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)
before_action :authorize_web
before_action :set_locale
+ before_action :check_database_readable
authorize_resource
before_action :find_issue, :only => [:show, :resolve, :reopen, :ignore]
+ before_action :check_database_writable, :only => [:resolve, :ignore, :reopen]
def index
@title = t ".title"
before_action :authorize_web
before_action :set_locale
+ before_action :check_database_readable
authorize_resource
+ before_action :check_database_writable, :only => [:new, :create]
+
def new
if required_new_report_params_present?
@report = Report.new