diff options
author | Andrew Tomaka <atomaka@gmail.com> | 2013-12-09 00:34:51 -0500 |
---|---|---|
committer | Andrew Tomaka <atomaka@gmail.com> | 2013-12-18 17:43:45 -0500 |
commit | 0760ba3efb7566b9f56bb066f4b15ba8ea34e1e7 (patch) | |
tree | 90188fdd35e78469275a6f6084b33dce7495d841 /app/models/broadcast_message.rb | |
parent | 566b49624a230728a3a873ee1937f4b8d30ff8f5 (diff) | |
download | gitlab-ce-0760ba3efb7566b9f56bb066f4b15ba8ea34e1e7.tar.gz |
Customization and previewing of broadcast messages
Diffstat (limited to 'app/models/broadcast_message.rb')
-rw-r--r-- | app/models/broadcast_message.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/models/broadcast_message.rb b/app/models/broadcast_message.rb index a8b1db9c24e..05b4dfc366e 100644 --- a/app/models/broadcast_message.rb +++ b/app/models/broadcast_message.rb @@ -9,10 +9,12 @@ # alert_type :integer # created_at :datetime not null # updated_at :datetime not null +# color :string(255) +# font :string(255) # class BroadcastMessage < ActiveRecord::Base - attr_accessible :alert_type, :ends_at, :message, :starts_at + attr_accessible :alert_type, :color, :ends_at, :font, :message, :starts_at validates :message, presence: true validates :starts_at, presence: true |