diff options
author | Tomasz Maczukin <tomasz@maczukin.pl> | 2016-01-26 17:03:38 +0100 |
---|---|---|
committer | Tomasz Maczukin <tomasz@maczukin.pl> | 2016-02-19 13:18:46 +0100 |
commit | 128be3c0103f601b2c80f3489646e57e202f6327 (patch) | |
tree | 293399797a6cb9cc5814eac25acd6e5d57c9f1ea /lib/api/api.rb | |
parent | e586858eb58cc628f700c4f0d6ae7b574def3be9 (diff) | |
download | gitlab-ce-128be3c0103f601b2c80f3489646e57e202f6327.tar.gz |
Add basic runners management API
- add feature to list runners
- add feature to show runners details
- add feature to delete runner
- add feature to update runner
Diffstat (limited to 'lib/api/api.rb')
-rw-r--r-- | lib/api/api.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/api/api.rb b/lib/api/api.rb index 7efe0a0262f..7d65145176b 100644 --- a/lib/api/api.rb +++ b/lib/api/api.rb @@ -56,5 +56,6 @@ module API mount Triggers mount Builds mount Variables + mount Runners end end |