PHRAS-3754 admin - user detail - Record ACL tab (#4148)

* record acl tab in admin

* fix email locked, limit record right to 200

* fix

* add filter

* update

* feed element, basket element

* feed list

* feed entries

* when not expand

* some improvement
This commit is contained in:
Aina Sitraka
2022-10-26 00:21:25 +03:00
committed by GitHub
parent 19b4f6d06b
commit 69ccdefb51
10 changed files with 742 additions and 141 deletions

View File

@@ -86,6 +86,10 @@ class Users implements ControllerProviderInterface, ServiceProviderInterface
->bind('users_import_csv');
$controllers->get('/import/example/rtf/', 'controller.admin.users:importRtfExampleAction')
->bind('users_import_rtf');
$controllers->get('/records-acl/', 'controller.admin.users:listRecordAcl');
$controllers->get('/feed-entry/', 'controller.admin.users:listFeedEntry');
$controllers->post('/feed-entry/delete/', 'controller.admin.users:deleteFeedEntry');
$controllers->get('/records-basket/', 'controller.admin.users:listRecordBasket');
return $controllers;
}