]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/issue_comments_controller.rb
Enforce consistent indentation in javascript code
[rails.git] / app / controllers / issue_comments_controller.rb
index 52904d5b2b869550d6c0cc2c254c033b8277c573..3a6b357f90b5bc39d21fc222f1a45c043214405b 100644 (file)
@@ -2,8 +2,9 @@ class IssueCommentsController < ApplicationController
   layout "site"
 
   before_action :authorize_web
-  before_action :require_user
-  before_action :check_permission
+  before_action :set_locale
+
+  authorize_resource
 
   def create
     @issue = Issue.find(params[:issue_id])
@@ -21,13 +22,6 @@ class IssueCommentsController < ApplicationController
     params.require(:issue_comment).permit(:body)
   end
 
-  def check_permission
-    unless current_user.administrator? || current_user.moderator?
-      flash[:error] = t("application.require_moderator_or_admin.not_a_moderator_or_admin")
-      redirect_to root_path
-    end
-  end
-
   # This sort of assumes there are only two roles
   def reassign_issue(issue)
     role = (Issue::ASSIGNED_ROLES - [issue.assigned_role]).first