1
0
Fork 0
mirror of synced 2024-07-03 13:41:01 +12:00

Merge branch 'feat-database-indexing' of github.com:appwrite/appwrite into feat-db-refactor-routes

This commit is contained in:
kodumbeats 2021-06-17 14:24:09 -04:00
commit c7dfb60bbc
2 changed files with 2 additions and 2 deletions

View file

@ -850,7 +850,7 @@ App::get('/v1/account/logs')
$audit = new Audit($dbForInternal);
$countries = $locale->getText('countries');
$logs = $audit->getLogsByUserAndActions($user->getId(), [
$logs = $audit->getLogsByUserAndEvents($user->getId(), [
'account.create',
'account.delete',
'account.update.name',

View file

@ -234,7 +234,7 @@ App::get('/v1/users/:userId/logs')
$countries = $locale->getText('countries');
$logs = $audit->getLogsByUserAndActions($user->getId(), [
$logs = $audit->getLogsByUserAndEvents($user->getId(), [
'account.create',
'account.delete',
'account.update.name',