Class: Decidim::Admin::AdminTermsController

Inherits:
ApplicationController show all
Defined in:
decidim-admin/app/controllers/decidim/admin/admin_terms_controller.rb

Overview

The controller to handle the Admin Terms of service agreement.

Instance Method Summary collapse

Methods inherited from ApplicationController

#permission_class_chain, #permission_scope, #user_has_no_permission_path, #user_not_authorized_path

Methods included from Headers::HttpCachingDisabler

#disable_http_caching

Methods included from NeedsSnippets

#snippets

Methods included from RegistersPermissions

register_permissions

Methods included from NeedsOrganization

enhance_controller, extended, included

Instance Method Details

#acceptObject



8
9
10
11
12
13
14
15
16
17
# File 'decidim-admin/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_service")
    redirect_to stored_location_for(current_user) || decidim_admin.root_path
  else
    flash[:alert] = t("accept.error", scope: "decidim.admin.admin_terms_of_service")
    redirect_to decidim_admin.admin_terms_show_path
  end
end