]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/issue_comments_controller.rb
Add database checks to issue and report controllers
[rails.git] / app / controllers / issue_comments_controller.rb
index 7b935665f5bd4b1e86c3bc1e2a5ee6966eec3dbb..7edef184e782cf560a5c31d5a68b9c1550f1b88c 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)