mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-27 02:52:48 +00:00
52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
# coding=utf-8
|
||
"""
|
||
@project: MaxKB
|
||
@Author:虎虎
|
||
@file: workspace_user_resource_permission.py
|
||
@date:2025/4/28 18:13
|
||
@desc:
|
||
"""
|
||
from drf_spectacular.types import OpenApiTypes
|
||
from drf_spectacular.utils import OpenApiParameter
|
||
|
||
from common.mixins.api_mixin import APIMixin
|
||
from common.result import ResultSerializer
|
||
from system_manage.serializers.user_resource_permission import UserResourcePermissionResponse, \
|
||
UpdateUserResourcePermissionRequest
|
||
|
||
|
||
class APIUserResourcePermissionResponse(ResultSerializer):
|
||
def get_data(self):
|
||
return UserResourcePermissionResponse(many=True)
|
||
|
||
|
||
class UserResourcePermissionAPI(APIMixin):
|
||
@staticmethod
|
||
def get_parameters():
|
||
return [
|
||
OpenApiParameter(
|
||
name="workspace_id",
|
||
description="工作空间id",
|
||
type=OpenApiTypes.STR,
|
||
location='path',
|
||
required=True,
|
||
),
|
||
OpenApiParameter(
|
||
name="user_id",
|
||
description="用户id",
|
||
type=OpenApiTypes.STR,
|
||
location='path',
|
||
required=True,
|
||
),
|
||
]
|
||
|
||
@staticmethod
|
||
def get_response():
|
||
return APIUserResourcePermissionResponse
|
||
|
||
|
||
class EditUserResourcePermissionAPI(APIMixin):
|
||
@staticmethod
|
||
def get_request():
|
||
return UpdateUserResourcePermissionRequest()
|