diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-03-15 14:43:59 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-04-05 12:38:43 +0200 |
commit | 2ebf26e4447c6c5eef41be35ee4487c78ffe8231 (patch) | |
tree | aa25e3c39bdcec0bc4b8abcc131060b721d8582e /apps/admin_audit/lib/Actions | |
parent | 8fe914f07e1b4d41c02e127e2242e0a770535455 (diff) | |
download | nextcloud-server-2ebf26e4447c6c5eef41be35ee4487c78ffe8231.tar.gz nextcloud-server-2ebf26e4447c6c5eef41be35ee4487c78ffe8231.zip |
admin_audit and dav listen to announce and revoke signals
also place them in doc
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/admin_audit/lib/Actions')
-rw-r--r-- | apps/admin_audit/lib/Actions/UserManagement.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/admin_audit/lib/Actions/UserManagement.php b/apps/admin_audit/lib/Actions/UserManagement.php index 45250d4e708..9e015160773 100644 --- a/apps/admin_audit/lib/Actions/UserManagement.php +++ b/apps/admin_audit/lib/Actions/UserManagement.php @@ -51,6 +51,19 @@ class UserManagement extends Action { } /** + * Log assignments of users (typically user backends) + * + * @param string $uid + */ + public function announce(string $uid) { + $this->log( + 'UserID assgined: "%s"', + [ 'uid' => $uid ], + [ 'uid' ] + ); + } + + /** * Log deletion of users * * @param array $params @@ -66,6 +79,19 @@ class UserManagement extends Action { } /** + * Log unassignments of users (typically user backends, no data removed) + * + * @param string $uid + */ + public function revoke(string $uid) { + $this->log( + 'UserID unassigned: "%s"', + [ 'uid' => $uid ], + [ 'uid' ] + ); + } + + /** * Log enabling of users * * @param array $params |