Merge pull request #400 from AtkinsSJ/fix-apierror-includes

fix: Correct APIError imports
This commit is contained in:
Eric Dubé 2024-05-15 13:51:04 -04:00 committed by GitHub
commit 6e0b6d84d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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',