Class: Decidim::Admin::ShareTokensController
- Inherits:
-
ApplicationController
- Object
- DecidimController
- ApplicationController
- Decidim::Admin::ShareTokensController
- Defined in:
- 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
Instance Method Details
#destroy ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'app/controllers/decidim/admin/share_tokens_controller.rb', line 6 def destroy (:destroy, :share_token, share_token:) Decidim::Commands::DestroyResource.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 |