mirror of
https://github.com/HeyPuter/puter.git
synced 2025-01-23 22:40:20 +08:00
fix: Correct APIError imports
APIError is the only thing exported from its file, so we must not wrap it in {}.
This commit is contained in:
parent
0b093dd57e
commit
062e23b5c9
@ -16,7 +16,7 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
const { APIError } = require('../../api/APIError');
|
||||
const APIError = require('../../api/APIError');
|
||||
|
||||
module.exports = class FlagParam {
|
||||
constructor (srckey, options) {
|
||||
|
@ -16,7 +16,7 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
const { APIError } = require('../../api/APIError');
|
||||
const APIError = require('../../api/APIError');
|
||||
|
||||
module.exports = class StringParam {
|
||||
constructor (srckey, options) {
|
||||
|
@ -20,7 +20,7 @@ const { stream_to_buffer } = require("../../util/streamutil");
|
||||
const { HLFilesystemOperation } = require("./definitions");
|
||||
const { chkperm } = require('../../helpers');
|
||||
const { LLRead } = require('../ll_operations/ll_read');
|
||||
const { APIError } = require('../../api/APIError');
|
||||
const APIError = require('../../api/APIError');
|
||||
|
||||
/**
|
||||
* HLDataRead reads a stream of objects from a file containing structured data.
|
||||
|
@ -19,7 +19,7 @@
|
||||
const { chkperm } = require("../../helpers");
|
||||
const { Context } = require("../../util/context");
|
||||
const { HLFilesystemOperation } = require("./definitions");
|
||||
const { APIError } = require('../../api/APIError');
|
||||
const APIError = require('../../api/APIError');
|
||||
|
||||
class HLStat extends HLFilesystemOperation {
|
||||
static MODULES = {
|
||||
|
@ -19,7 +19,7 @@
|
||||
const { Context } = require("../../util/context");
|
||||
const { ParallelTasks } = require("../../util/otelutil");
|
||||
const { LLFilesystemOperation } = require("./definitions");
|
||||
const { APIError } = require("../../api/APIError");
|
||||
const APIError = require("../../api/APIError");
|
||||
|
||||
class LLRmNode extends LLFilesystemOperation {
|
||||
async _run () {
|
||||
|
@ -21,7 +21,7 @@ const { get_app, get_user } = require("../../helpers");
|
||||
const { UserActorType } = require("../../services/auth/Actor");
|
||||
const { DB_READ } = require("../../services/database/consts");
|
||||
const { Context } = require("../../util/context");
|
||||
const { APIError } = require('../../api/APIError');
|
||||
const APIError = require('../../api/APIError');
|
||||
|
||||
module.exports = eggspress('/auth/list-permissions', {
|
||||
subdomain: 'api',
|
||||
|
@ -1,7 +1,7 @@
|
||||
const eggspress = require("../../api/eggspress");
|
||||
const { UserActorType } = require("../../services/auth/Actor");
|
||||
const { Context } = require("../../util/context");
|
||||
const { APIError } = require('../../api/APIError');
|
||||
const APIError = require('../../api/APIError');
|
||||
|
||||
module.exports = eggspress('/auth/list-sessions', {
|
||||
subdomain: 'api',
|
||||
|
@ -19,7 +19,7 @@
|
||||
const eggspress = require("../../api/eggspress");
|
||||
const { UserActorType } = require("../../services/auth/Actor");
|
||||
const { Context } = require("../../util/context");
|
||||
const { APIError } = require('../../api/APIError');
|
||||
const APIError = require('../../api/APIError');
|
||||
|
||||
module.exports = eggspress('/auth/revoke-user-app', {
|
||||
subdomain: 'api',
|
||||
|
Loading…
Reference in New Issue
Block a user