Skip to content
Snippets Groups Projects
Commit 28dc900d authored by David Trattnig's avatar David Trattnig
Browse files

Status as a main endpoint.

parent 3755eda0
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,7 @@ class EngineApi: ...@@ -132,7 +132,7 @@ class EngineApi:
self.api.add_resource(ReportResource, config.api_prefix + "/report/<string:year_month>") self.api.add_resource(ReportResource, config.api_prefix + "/report/<string:year_month>")
self.api.add_resource(UpcomingSchedulesResource, config.api_prefix + "/schedule/upcoming") self.api.add_resource(UpcomingSchedulesResource, config.api_prefix + "/schedule/upcoming")
self.api.add_resource(ClockDataResource, config.api_prefix + "/clock") self.api.add_resource(ClockDataResource, config.api_prefix + "/clock")
self.api.add_resource(StatusResource, config.api_prefix + "/status") self.api.add_resource(StatusResource, "/status")
self.logger.info("Engine API routes successfully set!") self.logger.info("Engine API routes successfully set!")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment