File tree 2 files changed +1
-3
lines changed
api-server/src/simcore_service_api_server/models
web/server/src/simcore_service_webserver/projects/_controller
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 5
5
from pydantic import Field , TypeAdapter
6
6
from pydantic .types import StringConstraints
7
7
8
- # RESOURCE NAMES https://cloud. google.com/apis/design/resource_names
8
+ # RESOURCE NAMES https://google.aip.dev/122
9
9
#
10
10
#
11
11
# API Service Name Collection ID Resource ID Collection ID Resource ID
Original file line number Diff line number Diff line change @@ -158,7 +158,6 @@ async def list_projects(request: web.Request):
158
158
workspace_id = query_params .workspace_id ,
159
159
search_by_multi_columns = query_params .search ,
160
160
search_by_project_name = query_params .filters .search_by_project_name ,
161
- # TODO: query_params.filters.job_parent_resource_name
162
161
offset = query_params .offset ,
163
162
limit = query_params .limit ,
164
163
order_by = OrderBy .model_construct (** query_params .order_by .model_dump ()),
@@ -199,7 +198,6 @@ async def list_projects_full_search(request: web.Request):
199
198
tag_ids_list = tag_ids_list ,
200
199
search_by_multi_columns = query_params .text ,
201
200
search_by_project_name = query_params .filters .search_by_project_name ,
202
- # TODO: query_params.filters.job_parent_resource_name
203
201
offset = query_params .offset ,
204
202
limit = query_params .limit ,
205
203
order_by = OrderBy .model_construct (** query_params .order_by .model_dump ()),
You can’t perform that action at this time.
0 commit comments