We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daed3c9 commit e4e8886Copy full SHA for e4e8886
labthings/server/views/extensions.py
@@ -4,10 +4,9 @@
4
from ..view import View
5
from ..find import registered_extensions
6
from ..schema import ExtensionSchema
7
-from ..decorators import marshal_with, ThingProperty
+from ..decorators import marshal_with
8
9
10
-@ThingProperty
11
class ExtensionList(View):
12
"""
13
List and basic documentation for all enabled Extensions
labthings/server/views/tasks.py
@@ -1,13 +1,12 @@
1
from flask import abort, url_for
2
3
-from ..decorators import marshal_with, ThingProperty, Tag
+from ..decorators import marshal_with, Tag
from ..schema import TaskSchema
from ...core import tasks
@Tag("tasks")
class TaskList(View):
@marshal_with(TaskSchema(many=True))
0 commit comments