Bläddra i källkod

refactor: remove the duplicate definitions across different modules (#9022)

tags/0.9.1-fix1
zhuhao 1 år sedan
förälder
incheckning
959a81a41b
Inget konto är kopplat till bidragsgivarens mejladress

+ 7
- 0
api/controllers/files/error.py Visa fil

@@ -0,0 +1,7 @@
from libs.exception import BaseHTTPException


class UnsupportedFileTypeError(BaseHTTPException):
error_code = "unsupported_file_type"
description = "File type not allowed."
code = 415

+ 1
- 7
api/controllers/files/image_preview.py Visa fil

@@ -4,7 +4,7 @@ from werkzeug.exceptions import NotFound

import services
from controllers.files import api
from libs.exception import BaseHTTPException
from controllers.files.error import UnsupportedFileTypeError
from services.account_service import TenantService
from services.file_service import FileService

@@ -50,9 +50,3 @@ class WorkspaceWebappLogoApi(Resource):

api.add_resource(ImagePreviewApi, "/files/<uuid:file_id>/image-preview")
api.add_resource(WorkspaceWebappLogoApi, "/files/workspaces/<uuid:workspace_id>/webapp-logo")


class UnsupportedFileTypeError(BaseHTTPException):
error_code = "unsupported_file_type"
description = "File type not allowed."
code = 415

+ 1
- 7
api/controllers/files/tool_files.py Visa fil

@@ -3,8 +3,8 @@ from flask_restful import Resource, reqparse
from werkzeug.exceptions import Forbidden, NotFound

from controllers.files import api
from controllers.files.error import UnsupportedFileTypeError
from core.tools.tool_file_manager import ToolFileManager
from libs.exception import BaseHTTPException


class ToolFilePreviewApi(Resource):
@@ -43,9 +43,3 @@ class ToolFilePreviewApi(Resource):


api.add_resource(ToolFilePreviewApi, "/files/tools/<uuid:file_id>.<string:extension>")


class UnsupportedFileTypeError(BaseHTTPException):
error_code = "unsupported_file_type"
description = "File type not allowed."
code = 415

Laddar…
Avbryt
Spara