Skip to content

Commit

Permalink
updated /api/get_queues endpoint to /api/data/get_queues
Browse files Browse the repository at this point in the history
  • Loading branch information
benne238 committed Feb 2, 2021
1 parent 9cb49bf commit c02fae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def get(self) -> tuple:
api.add_resource(RefreshAccessToken, "/api/tokens/refresh")
api.add_resource(Item, "/api/data/<string:queue>/<int:number>")
api.add_resource(Queue, "/api/data/<string:queues>")
api.add_resource(QueueList, "/api/get_queues")
api.add_resource(QueueList, "/api/data/get_queues")

if __name__ == "__main__":
app.run()

0 comments on commit c02fae3

Please sign in to comment.