]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/issue_comments_controller.rb
Merge remote-tracking branch 'upstream/pull/4823'
[rails.git] / app / controllers / issue_comments_controller.rb
index a4bb6a5ed15af00df5bd0b60132cdfc67461681e..5bf4d023784a587613645f03891f5e2f22ae2cae 100644 (file)
@@ -3,9 +3,12 @@ class IssueCommentsController < ApplicationController
 
   before_action :authorize_web
   before_action :set_locale
+  before_action :check_database_readable
 
   authorize_resource
 
+  before_action :check_database_writable, :only => [:create]
+
   def create
     @issue = Issue.find(params[:issue_id])
     comment = @issue.comments.build(issue_comment_params)
@@ -16,10 +19,10 @@ class IssueCommentsController < ApplicationController
       reassign_issue(@issue)
       flash[:notice] = t ".issue_reassigned"
 
-      if current_user.has_role? @issue.assigned_role
+      if current_user.role? @issue.assigned_role
         redirect_to @issue
       else
-        redirect_to issues_path
+        redirect_to issues_path(:status => "open")
       end
     else
       flash[:notice] = t(".comment_created")