mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-13 04:50:56 +00:00
feat(data-access): move puter.js read to app driver
This is the first functional migration from ths `es:app` driver to the `app` driver. Any call to `puter.apps.get` will go through `es:app` after this change.
This commit is contained in:
@@ -190,7 +190,7 @@ class Apps {
|
||||
if ( typeof args[0] === 'object' && args[0] !== null ) {
|
||||
options.params = args[0];
|
||||
}
|
||||
return this.#addUserIterationToApp(await utils.make_driver_method(['uid'], 'puter-apps', 'es:app', 'read').call(this, options));
|
||||
return this.#addUserIterationToApp(await utils.make_driver_method(['uid'], 'puter-apps', 'app', 'read').call(this, options));
|
||||
};
|
||||
|
||||
delete = async (...args) => {
|
||||
|
||||
Reference in New Issue
Block a user