UnisKB/apps/setting/swagger_api/valid_api.py

29 lines
952 B
Python
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# coding=utf-8
"""
@project: MaxKB
@Author
@file valid_api.py
@date2024/7/8 17:52
@desc:
"""
from drf_yasg import openapi
from common.mixins.api_mixin import ApiMixin
from django.utils.translation import gettext_lazy as _
class ValidApi(ApiMixin):
@staticmethod
def get_request_params_api():
return [openapi.Parameter(name='valid_type',
in_=openapi.IN_PATH,
type=openapi.TYPE_STRING,
required=True,
description=_('Verification type: application|dataset|user')),
openapi.Parameter(name='valid_count',
in_=openapi.IN_PATH,
type=openapi.TYPE_STRING,
required=True,
description=_('check quantity'))
]