aboutsummaryrefslogtreecommitdiff
path: root/app/blueprints/gitlab/__init__.py
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2020-06-03 16:41:06 +0100
committerrubenwardy <rw@rubenwardy.com>2020-06-03 16:41:06 +0100
commit720457e8768429efb3c9a8107e0e01a3490d75c3 (patch)
tree06ae85c8f0a61733a9056f36377a98f3cef29c2b /app/blueprints/gitlab/__init__.py
parent27d004d2999dd5a03838d6aa59bdd6e2ff882746 (diff)
downloadcheatdb-720457e8768429efb3c9a8107e0e01a3490d75c3.tar.xz
Add helper link to API tokens page
Diffstat (limited to 'app/blueprints/gitlab/__init__.py')
-rw-r--r--app/blueprints/gitlab/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/blueprints/gitlab/__init__.py b/app/blueprints/gitlab/__init__.py
index 18ce8c2..aaccf74 100644
--- a/app/blueprints/gitlab/__init__.py
+++ b/app/blueprints/gitlab/__init__.py
@@ -29,7 +29,7 @@ def webhook():
json = request.json
# Get package
- gitlab_url = "gitlab.com/{}/{}".format(json["project"]["namespace"], json["project"]["name"])
+ gitlab_url = json["project"]["web_url"].replace("https://", "").replace("http://", "")
package = Package.query.filter(Package.repo.ilike("%{}%".format(gitlab_url))).first()
if package is None:
return error(400, "Could not find package, did you set the VCS repo in CDB correctly? Expected {}".format(gitlab_url))