-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviews.py
More file actions
126 lines (123 loc) · 3.17 KB
/
Copy pathviews.py
File metadata and controls
126 lines (123 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
"""Stable API endpoint imports used by URL registration and legacy call sites.
Endpoint implementations live in focused modules. Keep this module thin so
existing URL registrations can import the stable names they need without
depending on compatibility wrappers.
"""
from .analysis_views import glaze_combination_images
from .auth.views import (
agent_token_detail,
agent_tokens,
auth_delete_account,
auth_export,
auth_google,
auth_logout,
auth_me,
auth_preferences,
auth_token,
auth_token_refresh,
auth_token_revoke,
csrf,
exchange_for_mcp_agent_token,
mock_idp_authorize,
mock_idp_complete,
send_invite,
staff_invite_batch,
staff_invite_code,
)
from .crop_run_views import CropRunViewSet, ImageCropRunsView
from .global_entries.views import (
make_global_entry_favorite_view,
make_global_entry_view,
)
from .health_views import (
_check_async_tasks,
_check_database,
_check_migrations,
health_live,
health_ready,
)
from .import_views import admin_manual_square_crop_import
from .piece.image_views import (
patch_image_crop,
piece_image_detail,
upload_image_from_refs_to_current_state,
upload_image_from_refs_to_past_state,
upload_image_to_current_state,
upload_image_to_past_state,
)
from .piece.showcase_views import (
piece_showcase_video,
)
from .piece.views import (
piece_current_state,
piece_current_state_detail,
piece_detail,
piece_history,
piece_past_state,
piece_states,
pieces,
)
from .task_views import report_task_progress, submit_task, task_detail
from .telemetry_views import browser_traces
from .uploads.views import (
r2_confirm_upload,
r2_convert_image,
r2_convert_image_status,
r2_presigned_upload_url,
)
from .workflow_views import workflow_schema, workflow_state_schema
__all__ = [
"CropRunViewSet",
"agent_token_detail",
"agent_tokens",
"ImageCropRunsView",
"_check_async_tasks",
"_check_database",
"_check_migrations",
"admin_manual_square_crop_import",
"auth_delete_account",
"auth_export",
"auth_google",
"exchange_for_mcp_agent_token",
"mock_idp_authorize",
"mock_idp_complete",
"auth_logout",
"auth_me",
"auth_preferences",
"auth_token",
"auth_token_refresh",
"auth_token_revoke",
"csrf",
"glaze_combination_images",
"health_live",
"health_ready",
"make_global_entry_favorite_view",
"make_global_entry_view",
"piece_current_state",
"piece_current_state_detail",
"patch_image_crop",
"upload_image_from_refs_to_current_state",
"upload_image_from_refs_to_past_state",
"upload_image_to_current_state",
"upload_image_to_past_state",
"piece_detail",
"piece_history",
"piece_image_detail",
"piece_past_state",
"piece_showcase_video",
"piece_states",
"pieces",
"r2_confirm_upload",
"r2_convert_image",
"r2_convert_image_status",
"r2_presigned_upload_url",
"send_invite",
"staff_invite_batch",
"staff_invite_code",
"report_task_progress",
"submit_task",
"task_detail",
"browser_traces",
"workflow_schema",
"workflow_state_schema",
]