2020-03-17 09:25:08 +00:00
|
|
|
class AlbumSetting
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
field :limit
|
2021-04-04 05:03:24 +00:00
|
|
|
field :resize_gravity, type: String, default: 'center'
|
|
|
|
ResizeGravities = %w[Center NorthWest North NorthEast West East SouthWest South SouthEast]
|
|
|
|
field :album_card_background_color, default: ''
|
|
|
|
field :album_card_text_color, default: '#000000'
|
2020-03-17 09:25:08 +00:00
|
|
|
end
|