]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/application_helper.rb
Add a "Hide" button to notes when viewed by moderators
[rails.git] / app / helpers / application_helper.rb
index 9676e6ee16a234d9255175367850e19381cf0481..b91710b9c6f3dfa86df5cfc82532b00294adf1f7 100644 (file)
@@ -26,6 +26,7 @@ module ApplicationHelper
     css << ".hide_if_user_#{@user.id} { display: none !important }" if @user;
     css << ".show_if_user_#{@user.id} { display: inline !important }" if @user;
     css << ".hide_unless_administrator { display: none !important }" unless @user and @user.administrator?;
+    css << ".hide_unless_moderator { display: none !important }" unless @user and @user.moderator?;
 
     return content_tag(:style, css, :type => "text/css")
   end
@@ -99,12 +100,4 @@ module ApplicationHelper
   def friendly_date(date)
     content_tag(:span, time_ago_in_words(date), :title => l(date, :format => :friendly))
   end
-
-  def note_author(object, link_options = {})
-    if object.author.nil?
-      ""
-    else
-      link_to h(object.author.display_name), link_options.merge({:controller => "user", :action => "view", :display_name => object.author.display_name})
-    end
-  end
 end