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:
KernelDeimos
2026-01-21 17:13:23 -05:00
committed by Eric Dubé
parent 0b55d19f89
commit 2139551abf
+1 -1
View File
@@ -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) => {