diff --git a/types/Gitlab/GitlabRoutes.ts b/types/Gitlab/GitlabRoutes.ts new file mode 100644 index 0000000000000000000000000000000000000000..805af9fbab88c28c88fcba8620349fee17846a2f --- /dev/null +++ b/types/Gitlab/GitlabRoutes.ts @@ -0,0 +1,12 @@ +enum GitlabRoutes { + NOTIFICATION_SETTINGS = '/notification_settings', + USERS_GET = '/users', + REPOSITORY_GET = '/projects/{{id}}', + REPOSITORY_CREATE = '/projects', + REPOSITORY_FORK = '/projects/{{id}}/fork', + REPOSITORY_MEMBER_ADD = '/projects/{{id}}/members', + REPOSITORY_MEMBERS_GET = '/projects/{{id}}/members/all' +} + + +export default GitlabRoutes; \ No newline at end of file