Remove gitlab-org used during testing, remove unused types and options

Signed-off-by: Hghtwr <johannes.sonner@outlook.com>
This commit is contained in:
Hghtwr
2024-05-27 23:41:18 +02:00
committed by Johannes Sonner
parent 59df048996
commit 5d4045b09d
3 changed files with 0 additions and 4 deletions
-1
View File
@@ -21,7 +21,6 @@ const backend = createBackend();
backend.add(import('@backstage/plugin-auth-backend'));
backend.add(import('./authModuleGithubProvider'));
backend.add(import('@backstage/plugin-auth-backend-module-guest-provider'));
backend.add(import('@backstage/plugin-catalog-backend-module-gitlab-org'));
backend.add(import('@backstage/plugin-app-backend/alpha'));
backend.add(import('@backstage/plugin-catalog-backend-module-unprocessed'));
backend.add(
@@ -23,7 +23,6 @@ import { LoggerService } from '@backstage/backend-plugin-api';
import {
GitLabDescendantGroupsResponse,
GitLabGroup,
GitlabGroupMember,
GitLabGroupMembersResponse,
GitLabProject,
GitLabUser,
@@ -127,7 +126,6 @@ export class GitLabClient {
async listUsers(
options?: UserListOptions,
global?: boolean,
): Promise<PagedResponse<GitLabUser>> {
return this.pagedRequest(`/users?`, {
...options,
@@ -153,7 +153,6 @@ export type GitlabProviderConfig = {
/**
* If true, the provider will only ingest users that are part of the configured group.
* Only valid for self-hosted GitLab instances.
*/
restrictUsersToGroup?: boolean;