(self, request: Request, workspace_id: str, application_id: str)
| 233 | CompareConstants.AND), |
| 234 | RoleConstants.WORKSPACE_MANAGE.get_workspace_role()) |
| 235 | def get(self, request: Request, workspace_id: str, application_id: str): |
| 236 | return result.success(ApplicationOperateSerializer( |
| 237 | data={'application_id': application_id, 'user_id': request.user.id, |
| 238 | 'workspace_id': workspace_id, }).one()) |
| 239 | |
| 240 | class Move(APIView): |
| 241 | authentication_classes = [TokenAuth] |
nothing calls this directly
no test coverage detected