Class: Decidim::NotificationsController

Inherits:
ApplicationController show all
Includes:
HasSpecificBreadcrumb
Defined in:
decidim-core/app/controllers/decidim/notifications_controller.rb

Overview

The controller to handle the user’s notifications deletion.

Instance Method Summary collapse

Methods included from UserBlockedChecker

#check_user_block_status, #check_user_not_blocked

Methods included from NeedsSnippets

#snippets

Methods included from Headers::HttpCachingDisabler

#disable_http_caching

Methods included from HasStoredPath

#skip_store_location?, #store_current_location

Methods included from RegistersPermissions

register_permissions

Methods included from NeedsOrganization

enhance_controller, extended, included

Instance Method Details

#destroyObject



12
13
14
15
16
# File 'decidim-core/app/controllers/decidim/notifications_controller.rb', line 12

def destroy
  notification = notifications.find(params[:id])
  enforce_permission_to(:destroy, :notification, notification:)
  notification.destroy
end

#indexObject



8
9
10
# File 'decidim-core/app/controllers/decidim/notifications_controller.rb', line 8

def index
  enforce_permission_to :read, :notification
end

#read_allObject



18
19
20
21
# File 'decidim-core/app/controllers/decidim/notifications_controller.rb', line 18

def read_all
  enforce_permission_to :destroy, :notification, notification: notifications.first
  notifications.destroy_all
end