prepend_before_action :authorize_web
before_action :set_locale
- authorize_resource :class => false
+ allow_all_form_action :only => :new
- def new
- override_content_security_policy_directives(:form_action => []) if Settings.csp_enforce || Settings.key?(:csp_report_url)
+ authorize_resource :class => false
- super
- end
+ before_action :check_database_writable
end