Class: Decidim::Admin::AdminTermsController
- Inherits:
-
ApplicationController
- Object
- DecidimController
- ApplicationController
- Decidim::Admin::AdminTermsController
- Defined in:
- app/controllers/decidim/admin/admin_terms_controller.rb
Overview
The controller to handle the Admin Terms of use agreement.
Instance Method Summary collapse
Methods inherited from ApplicationController
#permission_class_chain, #permission_scope, #user_has_no_permission_path, #user_not_authorized_path
Instance Method Details
#accept ⇒ Object
8 9 10 11 12 13 14 15 16 17 |
# File 'app/controllers/decidim/admin/admin_terms_controller.rb', line 8 def accept current_user.admin_terms_accepted_at = Time.current if current_user.save! flash[:notice] = t("accept.success", scope: "decidim.admin.admin_terms_of_use") redirect_to stored_location_for(current_user) || decidim_admin.root_path else flash[:alert] = t("accept.error", scope: "decidim.admin.admin_terms_of_use") redirect_to decidim_admin.admin_terms_show_path end end |