diff options
author | Oliver Poignant <oliver@poignant.se> | 2017-01-08 17:15:58 +0100 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2017-01-08 17:15:58 +0100 |
commit | 465cb9263fb1ffc9ba2d4a912847322920180caa (patch) | |
tree | 59932075b5f6426088704abac7c53f8c476da2a4 /gitautodeploy/parsers/gitlabci.py | |
parent | 324c3518d4b98da5bb660c62fa1503c47139c088 (diff) | |
download | Git-Auto-Deploy-465cb9263fb1ffc9ba2d4a912847322920180caa.zip Git-Auto-Deploy-465cb9263fb1ffc9ba2d4a912847322920180caa.tar.gz Git-Auto-Deploy-465cb9263fb1ffc9ba2d4a912847322920180caa.tar.bz2 |
RefactoringHEADorigin/masterorigin/HEADmaster
Diffstat (limited to 'gitautodeploy/parsers/gitlabci.py')
-rw-r--r-- | gitautodeploy/parsers/gitlabci.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gitautodeploy/parsers/gitlabci.py b/gitautodeploy/parsers/gitlabci.py index eebf2bd..35d5ed4 100644 --- a/gitautodeploy/parsers/gitlabci.py +++ b/gitautodeploy/parsers/gitlabci.py @@ -1,8 +1,9 @@ -from .common import WebhookRequestParser +from .base import WebhookRequestParserBase -class GitLabCIRequestParser(WebhookRequestParser): - def get_repo_configs(self, request_headers, request_body, action): +class GitLabCIRequestParser(WebhookRequestParserBase): + + def get_matching_projects(self, request_headers, request_body, action): import json data = json.loads(request_body) |