Skip to content

Commit

Permalink
Re-enable authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 committed Jun 21, 2021
1 parent 3a87891 commit ef7104d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/webqueue2api/api/resources/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


class Queue(Resource):
# @jwt_required
@jwt_required
def get(self, queues: str) -> tuple:
"""Returns the JSON representation of the queue requested.
Expand Down
2 changes: 1 addition & 1 deletion src/webqueue2api/api/resources/queue_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


class QueueList(Resource):
# @jwt_required
@jwt_required
def get(self) -> tuple:
"""Returns a list of dictionaries with the number of items in each queue.
Expand Down

0 comments on commit ef7104d

Please sign in to comment.