diff options
Diffstat (limited to 'app/blueprints/gitlab/__init__.py')
-rw-r--r-- | app/blueprints/gitlab/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/blueprints/gitlab/__init__.py b/app/blueprints/gitlab/__init__.py index 45b4aa5..84061d7 100644 --- a/app/blueprints/gitlab/__init__.py +++ b/app/blueprints/gitlab/__init__.py @@ -44,7 +44,7 @@ def webhook(): return error(403, "Invalid authentication") if not package.checkPerm(token.owner, Permission.APPROVE_RELEASE): - return error(403, "Only trusted members can use webhooks") + return error(403, "You do not have the permission to approve releases") # # Check event |