Loading services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/controllers/default_controller.py +9 −1 Original line number Diff line number Diff line import connexion from typing import Dict from typing import Tuple from typing import Union from api_provider_management.models.problem_details import ProblemDetails # noqa: E501 from api_provider_management import util from functools import wraps from api_provider_management.models.api_provider_enrolment_details import APIProviderEnrolmentDetails # noqa: E501 Loading @@ -9,6 +17,7 @@ from flask_jwt_extended import get_jwt_identity, jwt_required from ..core.provider_enrolment_details_api import ProviderManagementOperations from ..core.validate_user import ControlAccess provider_management_ops = ProviderManagementOperations() valid_user = ControlAccess() Loading Loading @@ -76,7 +85,6 @@ def registrations_registration_id_delete(registration_id): # noqa: E501 return res @cert_validation() def registrations_registration_id_put(registration_id, body): # noqa: E501 """registrations_registration_id_put Loading services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/controllers/individual_api_provider_enrolment_details_controller.py +10 −0 Original line number Diff line number Diff line import connexion from typing import Dict from typing import Tuple from typing import Union from api_provider_management.models.api_provider_enrolment_details import APIProviderEnrolmentDetails # noqa: E501 from api_provider_management.models.api_provider_enrolment_details_patch import APIProviderEnrolmentDetailsPatch # noqa: E501 from api_provider_management.models.problem_details import ProblemDetails # noqa: E501 from api_provider_management import util from flask import current_app, request from ..core.provider_enrolment_details_api import ProviderManagementOperations Loading services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/controllers/security_controller.py +1 −1 Original line number Diff line number Diff line from typing import List services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/encoder.py +1 −1 Original line number Diff line number Diff line from connexion.jsonifier import JSONEncoder from .models.base_model import Model from api_provider_management.models.base_model import Model class CustomJSONEncoder(JSONEncoder): Loading services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/models/__init__.py +7 −0 Original line number Diff line number Diff line # flake8: noqa # import models into model package from api_provider_management.models.api_provider_enrolment_details import APIProviderEnrolmentDetails from api_provider_management.models.api_provider_enrolment_details_patch import APIProviderEnrolmentDetailsPatch from api_provider_management.models.api_provider_function_details import APIProviderFunctionDetails from api_provider_management.models.api_provider_func_role import ApiProviderFuncRole from api_provider_management.models.invalid_param import InvalidParam from api_provider_management.models.problem_details import ProblemDetails from api_provider_management.models.registration_information import RegistrationInformation Loading
services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/controllers/default_controller.py +9 −1 Original line number Diff line number Diff line import connexion from typing import Dict from typing import Tuple from typing import Union from api_provider_management.models.problem_details import ProblemDetails # noqa: E501 from api_provider_management import util from functools import wraps from api_provider_management.models.api_provider_enrolment_details import APIProviderEnrolmentDetails # noqa: E501 Loading @@ -9,6 +17,7 @@ from flask_jwt_extended import get_jwt_identity, jwt_required from ..core.provider_enrolment_details_api import ProviderManagementOperations from ..core.validate_user import ControlAccess provider_management_ops = ProviderManagementOperations() valid_user = ControlAccess() Loading Loading @@ -76,7 +85,6 @@ def registrations_registration_id_delete(registration_id): # noqa: E501 return res @cert_validation() def registrations_registration_id_put(registration_id, body): # noqa: E501 """registrations_registration_id_put Loading
services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/controllers/individual_api_provider_enrolment_details_controller.py +10 −0 Original line number Diff line number Diff line import connexion from typing import Dict from typing import Tuple from typing import Union from api_provider_management.models.api_provider_enrolment_details import APIProviderEnrolmentDetails # noqa: E501 from api_provider_management.models.api_provider_enrolment_details_patch import APIProviderEnrolmentDetailsPatch # noqa: E501 from api_provider_management.models.problem_details import ProblemDetails # noqa: E501 from api_provider_management import util from flask import current_app, request from ..core.provider_enrolment_details_api import ProviderManagementOperations Loading
services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/controllers/security_controller.py +1 −1 Original line number Diff line number Diff line from typing import List
services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/encoder.py +1 −1 Original line number Diff line number Diff line from connexion.jsonifier import JSONEncoder from .models.base_model import Model from api_provider_management.models.base_model import Model class CustomJSONEncoder(JSONEncoder): Loading
services/TS29222_CAPIF_API_Provider_Management_API/api_provider_management/models/__init__.py +7 −0 Original line number Diff line number Diff line # flake8: noqa # import models into model package from api_provider_management.models.api_provider_enrolment_details import APIProviderEnrolmentDetails from api_provider_management.models.api_provider_enrolment_details_patch import APIProviderEnrolmentDetailsPatch from api_provider_management.models.api_provider_function_details import APIProviderFunctionDetails from api_provider_management.models.api_provider_func_role import ApiProviderFuncRole from api_provider_management.models.invalid_param import InvalidParam from api_provider_management.models.problem_details import ProblemDetails from api_provider_management.models.registration_information import RegistrationInformation