Files
gitlabhq/app/models/appearance.rb
T
2015-09-16 20:52:21 +02:00

25 lines
662 B
Ruby

# == Schema Information
#
# Table name: appearances
#
# id :integer not null, primary key
# title :string(255)
# description :text
# logo :string(255)
# updated_by :integer
# created_at :datetime
# updated_at :datetime
# dark_logo :string(255)
# light_logo :string(255)
#
class Appearance < ActiveRecord::Base
validates :title, presence: true
validates :description, presence: true
validates :logo, file_size: { maximum: 1000.kilobytes.to_i }
validates :light_logo, file_size: { maximum: 1000.kilobytes.to_i }
mount_uploader :logo, AttachmentUploader
mount_uploader :light_logo, AttachmentUploader
end