From 565ede0dc50c3b2df09c066ea3a28a4901cce547 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Tue, 23 Jun 2020 18:08:28 +0200 Subject: Add DB handlers and rename to v2 --- opendc/api/v1/schedulers/endpoint.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 opendc/api/v1/schedulers/endpoint.py (limited to 'opendc/api/v1/schedulers/endpoint.py') diff --git a/opendc/api/v1/schedulers/endpoint.py b/opendc/api/v1/schedulers/endpoint.py deleted file mode 100644 index 36537764..00000000 --- a/opendc/api/v1/schedulers/endpoint.py +++ /dev/null @@ -1,18 +0,0 @@ -from opendc.models.scheduler import Scheduler -from opendc.util.rest import Response - - -def GET(request): - """Get all available Schedulers.""" - - # Get the Schedulers - - schedulers = Scheduler.query() - - # Return the Schedulers - - return Response( - 200, - 'Successfully retrieved Schedulers.', - [x.to_JSON() for x in schedulers] - ) -- cgit v1.2.3