Flag amr as owner/admin

This commit is contained in:
floppydiskette 2024-09-18 20:53:24 +01:00
commit 4fb130cff0
No known key found for this signature in database
2 changed files with 5 additions and 2 deletions

View file

@ -11,10 +11,13 @@
<li>Failed to fetch members</li> <li>Failed to fetch members</li>
<% else %> <% else %>
<% get_members.each do |user| %> <% get_members.each do |user| %>
<li><a href="/~<%= user %>">~<%= user %></a></li> <li><a href="/~<%= user %>">~<%= user %></a><%= user == "amr" ? "*" : "" %></li>
<% end %> <% end %>
<% end %> <% end %>
</ul> </ul>
<small>
* owner &amp; admin
</small>
</div> </div>
<div class="section"> <div class="section">
<p>Services</p> <p>Services</p>

View file

@ -1,5 +1,5 @@
module FrznDev module FrznDev
class Application class Application
VERSION = "2024.08.06-dev" VERSION = "2024.09.18"
end end
end end