diff options
author | Oliver Poignant <oliver@poignant.se> | 2016-12-09 20:36:38 +0100 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2016-12-09 20:36:38 +0100 |
commit | c98d5b22de7bed03c6345775539a405e61e58477 (patch) | |
tree | 4fff1fdca0626bad24d894192369028d1af9d44d /gitautodeploy/parsers/generic.py | |
parent | 9e4aa3618ad9f5494847fb95b0958f2f1b43ccb5 (diff) | |
download | Git-Auto-Deploy-c98d5b22de7bed03c6345775539a405e61e58477.zip Git-Auto-Deploy-c98d5b22de7bed03c6345775539a405e61e58477.tar.gz Git-Auto-Deploy-c98d5b22de7bed03c6345775539a405e61e58477.tar.bz2 |
Verify secret token in GitLab requests
Diffstat (limited to 'gitautodeploy/parsers/generic.py')
-rw-r--r-- | gitautodeploy/parsers/generic.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gitautodeploy/parsers/generic.py b/gitautodeploy/parsers/generic.py index 3247662..7b150d2 100644 --- a/gitautodeploy/parsers/generic.py +++ b/gitautodeploy/parsers/generic.py @@ -27,4 +27,5 @@ class GenericRequestParser(WebhookRequestParser): # Get a list of configured repositories that matches the incoming web hook reqeust repo_configs = self.get_matching_repo_configs(repo_urls) - return repo_configs, ref or "master", action, repo_urls
\ No newline at end of file + return repo_configs, ref or "master", action, repo_urls + |