mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-08-07 15:28:45 +09:00
b065b40a34
and add test coverage for (un)supported file types. The avatar and logo variants move into the models and return nil for content types that are no longer variable, so the controllers fall back to the initials avatar and stock logo icon instead of raising `ActiveStorage::InvariableError`.
15 lines
409 B
Ruby
15 lines
409 B
Ruby
class Account < ApplicationRecord
|
|
include Joinable
|
|
|
|
has_one_attached :logo do |attachable|
|
|
attachable.variant :large, resize_to_limit: [ 512, 512 ], format: :png
|
|
attachable.variant :small, resize_to_limit: [ 192, 192 ], format: :png
|
|
end
|
|
|
|
has_json :settings, restrict_room_creation_to_administrators: false
|
|
|
|
def logo_variant(size)
|
|
logo.variant(size).processed if logo.variable?
|
|
end
|
|
end
|