1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +12:00

Added missing SDK command

This commit is contained in:
Eldad Fux 2020-10-29 12:58:48 +02:00
parent 57455db88b
commit 6bf8be7912
2 changed files with 13 additions and 0 deletions

View file

@ -158,6 +158,7 @@ RUN chmod +x /usr/local/bin/doctor && \
chmod +x /usr/local/bin/install && \
chmod +x /usr/local/bin/migrate && \
chmod +x /usr/local/bin/schedule && \
chmod +x /usr/local/bin/sdks && \
chmod +x /usr/local/bin/ssl && \
chmod +x /usr/local/bin/test && \
chmod +x /usr/local/bin/vars && \

View file

@ -55,4 +55,16 @@ return [
'storage.files.delete' => [
'description' => 'This event triggers when a storage file is deleted.',
],
'users.create' => [
'description' => 'This event triggers when a user is created from the users API.',
],
'users.update.status' => [
'description' => 'This event triggers when a user status is updated from the users API.',
],
'users.delete' => [
'description' => 'This event triggers when a user is deleted from users API.',
],
'users.sessions.delete' => [
'description' => 'This event triggers when a user session is deleted from users API.',
],
];