Skip to content

Commit

Permalink
[Notifications] Use proper REST methods (CSRF)
Browse files Browse the repository at this point in the history
  • Loading branch information
brusch committed Jul 30, 2021
1 parent 5b5c7ca commit 80713c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Expand Up @@ -195,7 +195,7 @@ public function findLastUnreadAction(Request $request, NotificationService $serv
}

/**
* @Route("/mark-as-read", name="pimcore_admin_notification_markasread")
* @Route("/mark-as-read", name="pimcore_admin_notification_markasread", methods={"PUT"})
*
* @param Request $request
* @param NotificationService $service
Expand All @@ -213,7 +213,7 @@ public function markAsReadAction(Request $request, NotificationService $service)
}

/**
* @Route("/delete", name="pimcore_admin_notification_delete")
* @Route("/delete", name="pimcore_admin_notification_delete", methods={"DELETE"})
*
* @param Request $request
* @param NotificationService $service
Expand All @@ -231,7 +231,7 @@ public function deleteAction(Request $request, NotificationService $service): Js
}

/**
* @Route("/delete-all", name="pimcore_admin_notification_deleteall")
* @Route("/delete-all", name="pimcore_admin_notification_deleteall", methods={"DELETE"})
*
* @param Request $request
* @param NotificationService $service
Expand Down
Expand Up @@ -93,6 +93,7 @@ pimcore.notification.helper.showNotifications = function (notifications) {
pimcore.notification.helper.markAsRead = function (id, callback) {
Ext.Ajax.request({
url: Routing.generate('pimcore_admin_notification_markasread', {id: id}),
method: 'PUT',
success: function (response) {
if (callback) {
callback();
Expand Down Expand Up @@ -158,6 +159,7 @@ pimcore.notification.helper.openDetailsWindow = function (id, title, message, ty
pimcore.notification.helper.delete = function (id, callback) {
Ext.Ajax.request({
url: Routing.generate('pimcore_admin_notification_delete', {id: id}),
method: 'DELETE',
success: function (response) {
if (callback) {
callback();
Expand All @@ -169,6 +171,7 @@ pimcore.notification.helper.delete = function (id, callback) {
pimcore.notification.helper.deleteAll = function (callback) {
Ext.Ajax.request({
url: Routing.generate('pimcore_admin_notification_deleteall'),
method: 'DELETE',
success: function (response) {
if (callback) {
callback();
Expand Down

0 comments on commit 80713c4

Please sign in to comment.