We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1c28b2 commit 2e96bbaCopy full SHA for 2e96bba
src/labthings/labthing.py
@@ -270,8 +270,8 @@ def _create_base_routes(self):
270
self.add_view(ExtensionList, "/extensions", endpoint=EXTENSION_LIST_ENDPOINT)
271
self.add_root_link(ExtensionList, "extensions")
272
# Add task routes
273
- self.add_view(TaskList, "/actions", endpoint=TASK_LIST_ENDPOINT)
274
- self.add_view(TaskView, "/actions/<task_id>", endpoint=TASK_ENDPOINT)
+ self.add_view(TaskList, "/tasks", endpoint=TASK_LIST_ENDPOINT)
+ self.add_view(TaskView, "/tasks/<task_id>", endpoint=TASK_ENDPOINT)
275
# Add action routes
276
self.add_view(ActionQueue, "/actions", endpoint=ACTION_LIST_ENDPOINT)
277
self.add_root_link(ActionQueue, "actions")
0 commit comments