1
0
Fork 0
mirror of synced 2024-06-28 03:01:15 +12:00

Merge branch '0.6' of github.com:appwrite/appwrite into functions

This commit is contained in:
Eldad Fux 2020-05-14 00:13:55 +03:00
commit feefcc4fb1
4 changed files with 24 additions and 8 deletions

View file

@ -302,7 +302,23 @@ $utopia->get('/v1/users/:userId/logs')
$countries = Locale::getText('countries');
$logs = $audit->getLogsByUser($user->getId());
$logs = $audit->getLogsByUserAndActions($user->getId(), [
'account.create',
'account.delete',
'account.update.name',
'account.update.email',
'account.update.password',
'account.update.prefs',
'account.sessions.create',
'account.sessions.delete',
'account.recovery.create',
'account.recovery.update',
'account.verification.create',
'account.verification.update',
'teams.membership.create',
'teams.membership.update',
'teams.membership.delete',
]);
$reader = new Reader(__DIR__.'/../../db/DBIP/dbip-country-lite-2020-01.mmdb');
$output = [];

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -17,11 +17,11 @@ table {
border-bottom: solid 1px var(--config-color-fade-super);
font-size: 14px;
th {
position: sticky;
top: -30px;
z-index: 3;
}
// th {
// position: sticky;
// top: -30px;
// z-index: 3;
// }
}
&.small {