mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 17:08:45 +00:00
debug
This commit is contained in:
parent
36e4c8c399
commit
051d6e580c
1 changed files with 3 additions and 3 deletions
|
|
@ -268,9 +268,9 @@ Server::setResource('deviceForBuilds', function (Document $project, $connectionS
|
|||
return getDevice(APP_STORAGE_BUILDS.'/app-'.$project->getId(), $connectionString);
|
||||
}, ['project', 'connectionString']);
|
||||
|
||||
Server::setResource('deviceForCache', function (Document $project, $connectionString) {
|
||||
return getDevice(APP_STORAGE_CACHE.'/app-'.$project->getId(), $connectionString);
|
||||
}, ['project', 'connectionString']);
|
||||
Server::setResource('deviceForCache', function (Document $project) {
|
||||
return getDevice(APP_STORAGE_CACHE.'/app-'.$project->getId());
|
||||
}, ['project']);
|
||||
|
||||
Server::setResource('realtimeConnection',function ($pools) {
|
||||
return function () use ($pools) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue