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:
Sam Atkins 2024-05-15 17:46:50 +01:00
parent 0b093dd57e
commit 062e23b5c9
8 changed files with 8 additions and 8 deletions

View File

@ -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) {

View File

@ -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) {

View File

@ -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.

View File

@ -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 = {

View File

@ -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 () {

View File

@ -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',

View File

@ -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',

View File

@ -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',