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>
<% else %>
<% get_members.each do |user| %>
<li><a href="/~<%= user %>">~<%= user %></a></li>
<li><a href="/~<%= user %>">~<%= user %></a><%= user == "amr" ? "*" : "" %></li>
<% end %>
<% end %>
</ul>
<small>
* owner &amp; admin
</small>
</div>
<div class="section">
<p>Services</p>

View file

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