add thanksgoving promo to dashboard

This commit is contained in:
drusepth 2022-11-26 13:22:37 -08:00
parent 75bd06bb13
commit aa7af759bf
4 changed files with 24 additions and 6 deletions

View File

@ -155,7 +155,7 @@
</div>
<% end %>
<%= render partial: 'notice_dismissal/messages/17' %>
<%= render partial: 'notice_dismissal/messages/18' %>
<div class="col s12 m5 l4">
<% if @recently_edited_pages.any? %>

View File

@ -1,4 +1,4 @@
<% if Date.current <= 'November 9, 2022'.to_date && show_notice?(id: 6) %>
<% if Date.current <= 'November 9, 2022'.to_date && show_notice?(id: 17) %>
<div class="col s12 m5 l4">
<div class="grey-text uppercase center">
Free for everyone

View File

@ -0,0 +1,18 @@
<% if Date.current <= 'December 15, 2022'.to_date && show_notice?(id: 18) %>
<div class="col s12 m5 l4">
<div class="grey-text uppercase center">
Happening now
</div>
<%= link_to 'https://medium.com/indent-labs/utopian-dream-or-dystopian-rule-93abf25ad4eb' do %>
<div class="card-panel hoverable <%= Government.color %> white-text">
<div class="valign-wrapper">
<i class="material-icons" class="left" style="font-size: 3em; margin-right: 0.3em;"><%= Government.icon %></i>
<div>
<div style="margin-bottom: 1em">Submit a government by December 15 to win 6 months of free Premium.</div>
Government pages are free to create during this worldbuilding competition!
</div>
</div>
</div>
<% end %>
</div>
<% end %>

View File

@ -2,11 +2,11 @@
User.find_each do |user|
user.notifications.create(
message_html: "<div class='text-darken-4 black-text'>2021 is winding to a close...</div>Click here to see your year in review!",
message_html: "<strong class='text-darken-4 black-text'>Worldbuilding Competitions:</strong> We're sponsoring two government-building competitions right now. Click for more details.",
icon: 'event_available',
icon_color: 'blue',
icon_color: 'orange',
happened_at: DateTime.current,
passthrough_link: "https://www.notebook.ai/my/data/yearly/2021",
reference_code: "2021-year-in-review"
passthrough_link: "https://medium.com/indent-labs/utopian-dream-or-dystopian-rule-93abf25ad4eb",
reference_code: "thanksgoving-2022"
)
end