We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cee248 commit 4dbe6fbCopy full SHA for 4dbe6fb
time_tracker_api/technologies/technologies_api.py
@@ -65,19 +65,11 @@ def get(self, uid):
65
"""Retrieve a technology"""
66
return {}
67
68
- @ns.doc('update_technology_status')
69
- @ns.param('uid', 'The technology identifier')
70
- @ns.expect(technology)
71
- @ns.response(204, 'State of the technology successfully updated')
72
- def post(self, uid):
73
- """Updates a technology using form data"""
74
- return ns.payload()
75
-
76
@ns.doc('put_technology')
77
@ns.expect(technology)
78
@ns.marshal_with(technology_response)
79
def put(self, uid):
80
- """Create or replace a technology"""
+ """Updates a technology"""
81
return ns.payload()
82
83
@ns.doc('delete_technology')
0 commit comments