summaryrefslogtreecommitdiff
path: root/app/views/layouts/application.html.erb
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-06 14:54:24 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-06 14:54:24 -0400
commit353a5dfcc1782744684922b7d41c8030750d1533 (patch)
treea7eae093125dc1d0839fe19660f2435938e7e7cf /app/views/layouts/application.html.erb
parentcfaff7870d0348b25b3b4b2597950894ab25d989 (diff)
add a server settings button to the top bar if you have permission
Diffstat (limited to 'app/views/layouts/application.html.erb')
-rw-r--r--app/views/layouts/application.html.erb3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index 976ee85..6d1d7f4 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -21,6 +21,9 @@
<% if signed_in? %>
<%= link_to current_user.user_name, current_user, :class => "user" %>
<%= link_to "Sign out", session_path("current"), method: "delete", :class => "signout" %>
+ <% if current_user.can? :edit_server %>
+ <%= link_to "Server settings", edit_server_path, :class => "server" %>
+ <% end %>
<% else %>
<%= link_to "Log in", new_session_path, :class => "signin" %>
<%= link_to "Sign up", new_user_path, :class => "signup" %>