summaryrefslogtreecommitdiff
path: root/ick2/pipelineapi.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-11-26 14:35:09 +0100
committerLars Wirzenius <liw@liw.fi>2017-11-26 17:56:12 +0100
commit4382c0943c5e84477fcdf6f1d26397c8a60a4624 (patch)
tree094aa931392b311420afc7f9bc00b26a3fd4a4d8 /ick2/pipelineapi.py
parentdb3e88505f0a6ad11519cf1615444b1d423d42fe (diff)
downloadick2-4382c0943c5e84477fcdf6f1d26397c8a60a4624.tar.gz
Add: pipeline sub-API
Diffstat (limited to 'ick2/pipelineapi.py')
-rw-r--r--ick2/pipelineapi.py25
1 files changed, 25 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
+
+
+import ick2
+
+
+class PipelineAPI(ick2.ResourceApiBase):
+
+ def __init__(self, state):
+ super().__init__('pipelines', state)
+
+ def get_resource_name(self, resource):
+ return resource['name']