From 9fdc3711674fa7343cd6614bac4f91e0b82c943b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <michael@minelli.me>
Date: Thu, 6 Jul 2023 14:09:55 +0200
Subject: [PATCH] GitlabRoutes => Add repository edit route

---
 types/Gitlab/GitlabRoutes.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/types/Gitlab/GitlabRoutes.ts b/types/Gitlab/GitlabRoutes.ts
index 805af9f..d427e78 100644
--- a/types/Gitlab/GitlabRoutes.ts
+++ b/types/Gitlab/GitlabRoutes.ts
@@ -3,6 +3,7 @@ enum GitlabRoutes {
     USERS_GET              = '/users',
     REPOSITORY_GET         = '/projects/{{id}}',
     REPOSITORY_CREATE      = '/projects',
+    REPOSITORY_EDIT        = '/projects/{{id}}',
     REPOSITORY_FORK        = '/projects/{{id}}/fork',
     REPOSITORY_MEMBER_ADD  = '/projects/{{id}}/members',
     REPOSITORY_MEMBERS_GET = '/projects/{{id}}/members/all'
-- 
GitLab