mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 07:36:41 +10:00
8 lines
225 B
Ruby
8 lines
225 B
Ruby
class Appearance < ActiveRecord::Base
|
|
validates :title, presence: true
|
|
validates :description, presence: true
|
|
validates :logo, file_size: { maximum: 1000.kilobytes.to_i }
|
|
|
|
mount_uploader :logo, AttachmentUploader
|
|
end
|