mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-03-18 20:23:38 +09:00
7 lines
153 B
Ruby
7 lines
153 B
Ruby
class Account < ApplicationRecord
|
|
include Joinable
|
|
|
|
has_one_attached :logo
|
|
has_json :settings, restrict_room_creation_to_administrators: false
|
|
end
|