Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
Notify.php
1<?php
2
4
6
7class Notify extends BaseController
8{
12 public function deleteAllAction(): ?array
13 {
14 $notifyChat = NotifyChat::getByUser();
15
16 if ($notifyChat !== null)
17 {
18 $notifyChat->dropAll();
19 }
20
21 return ['result' => true];
22 }
23}