1
0
Fork 0
mirror of synced 2024-06-29 11:40:45 +12:00

Merge branch 'feat-265-realtime' of https://github.com/appwrite/appwrite into feat-265-realtime-console

This commit is contained in:
Torsten Dittmann 2021-08-18 12:51:31 +02:00
commit bf6e5b72a2
2 changed files with 11 additions and 11 deletions

View file

@ -245,8 +245,8 @@ App::init(function ($utopia, $request, $response, $console, $project, $consoleDB
}
}
foreach (Auth::getRoles($user) as $role) {
Authorization::setRole($role);
foreach (Auth::getRoles($user) as $authRole) {
Authorization::setRole($authRole);
}
// TDOO Check if user is root

View file

@ -632,7 +632,7 @@ trait RealtimeBase
'x-appwrite-key' => $this->getProject()['apiKey']
]), [
'name' => 'Test',
'runtime' => 'php-7.4',
'runtime' => 'php-8.0',
'execute' => ['*'],
'timeout' => 10,
]);