Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tomaka <atomaka@gmail.com>2013-12-09 09:34:51 +0400
committerAndrew Tomaka <atomaka@gmail.com>2013-12-19 02:43:45 +0400
commit0760ba3efb7566b9f56bb066f4b15ba8ea34e1e7 (patch)
tree90188fdd35e78469275a6f6084b33dce7495d841 /spec/factories/broadcast_messages.rb
parent566b49624a230728a3a873ee1937f4b8d30ff8f5 (diff)
Customization and previewing of broadcast messages
Diffstat (limited to 'spec/factories/broadcast_messages.rb')
-rw-r--r--spec/factories/broadcast_messages.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/factories/broadcast_messages.rb b/spec/factories/broadcast_messages.rb
index 84dea945025..ad16edaf2ef 100644
--- a/spec/factories/broadcast_messages.rb
+++ b/spec/factories/broadcast_messages.rb
@@ -9,6 +9,8 @@
# alert_type :integer
# created_at :datetime not null
# updated_at :datetime not null
+# color :string(255)
+# font :string(255)
#
# Read about factories at https://github.com/thoughtbot/factory_girl
@@ -19,5 +21,7 @@ FactoryGirl.define do
starts_at "2013-11-12 13:43:25"
ends_at "2013-11-12 13:43:25"
alert_type 1
+ color "#555"
+ font "#BBB"
end
end