Merge pull request #2713 from basecamp/add-storage-limit-notice

Add 1GB storage cap with self-host notice
This commit is contained in:
Jorge Manrubia
2026-03-17 17:45:20 +01:00
committed by GitHub
22 changed files with 369 additions and 52 deletions
+5 -1
View File
@@ -1,7 +1,11 @@
<%= messages_tag(card) do %>
<% if card.published? %>
<%= render partial: "cards/comments/comment", collection: card.comments.preloaded.chronologically, cached: true %>
<%= render "cards/comments/new", card: card %>
<% if Fizzy.saas? %>
<%= render "cards/comments/saas/new", card: card %>
<% else %>
<%= render "cards/comments/new", card: card %>
<% end %>
<%= render "cards/comments/watchers", card: card %>
<% end %>
@@ -13,5 +13,7 @@
<span>Create and add another</span>
<% end %>
</div>
<%= render "cards/container/footer/saas/storage_limit_notice" if Fizzy.saas? %>
</div>
+5 -1
View File
@@ -26,5 +26,9 @@
</div>
<% end %>
<%= render "cards/container/footer/create", card: card %>
<% if Fizzy.saas? %>
<%= render "cards/container/footer/saas/create", card: card %>
<% else %>
<%= render "cards/container/footer/create", card: card %>
<% end %>
</section>