File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,17 @@ class Workspaces(BaseRepository):
172172 LIST_URL = "workspaces"
173173 ENTITY_CLASS = Workspace
174174 ADDITIONAL_METHODS = {
175- "projects" : {"url" : "projects" , "entity" : Project , "detail" : False }
175+ "projects" : {"url" : "projects" , "entity" : Project , "detail" : False },
176+ "users" : {"url" : "users" , "entity" : User , "detail" : False },
177+ "clients" : {"url" : "clients" , "entity" : Client , "detail" : False },
178+ "groups" : {"url" : "groups" , "entity" : Group , "detail" : False },
179+ "tasks" : {"url" : "tasks" , "entity" : Task , "detail" : False },
180+ "tags" : {"url" : "tags" , "entity" : Tag , "detail" : False },
181+ "workspace_users" : {
182+ "url" : "workspace_users" ,
183+ "entity" : WorkspaceUser ,
184+ "detail" : False ,
185+ },
176186 }
177187
178188
You can’t perform that action at this time.
0 commit comments