Class: Decidim::Admin::ShareTokensController

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

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

#destroyObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'decidim-admin/app/controllers/decidim/admin/share_tokens_controller.rb', line 6

def destroy
  enforce_permission_to(:destroy, :share_token, share_token:)

  DestroyShareToken.call(share_token, current_user) do
    on(:ok) do
      flash[:notice] = I18n.t("share_tokens.destroy.success", scope: "decidim.admin")
    end
    on(:invalid) do
      flash[:error] = I18n.t("share_tokens.destroy.error", scope: "decidim.admin")
    end
  end

  redirect_back(fallback_location: root_path)
end