(self, request: Request, workspace_id: str, trigger_id: str)
| 118 | get_operation_object=lambda r, k: get_trigger_operation_object(k.get('trigger_id')), |
| 119 | ) |
| 120 | def get(self, request: Request, workspace_id: str, trigger_id: str): |
| 121 | return result.success(TriggerOperateSerializer( |
| 122 | data={'trigger_id': trigger_id, 'workspace_id': workspace_id, 'user_id': request.user.id} |
| 123 | ).one()) |
| 124 | |
| 125 | @extend_schema( |
| 126 | methods=['PUT'], |
nothing calls this directly
no test coverage detected