From 4382c0943c5e84477fcdf6f1d26397c8a60a4624 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 26 Nov 2017 14:35:09 +0100 Subject: Add: pipeline sub-API --- ick2/pipelineapi.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ick2/pipelineapi.py (limited to 'ick2/pipelineapi.py') diff --git a/ick2/pipelineapi.py b/ick2/pipelineapi.py new file mode 100644 index 0000000..061505e --- /dev/null +++ b/ick2/pipelineapi.py @@ -0,0 +1,25 @@ +# Copyright (C) 2017 Lars Wirzenius +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + + +import ick2 + + +class PipelineAPI(ick2.ResourceApiBase): + + def __init__(self, state): + super().__init__('pipelines', state) + + def get_resource_name(self, resource): + return resource['name'] -- cgit v1.2.1