Skip to content

Commit

Permalink
remove pinniped provider from default providers in auth-backend
Browse files Browse the repository at this point in the history
Signed-off-by: Ruben Vallejo <rvallejo@vmware.com>
  • Loading branch information
rvallejony committed Oct 11, 2023
1 parent 17e5242 commit 5a96ebf
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 97 deletions.
5 changes: 0 additions & 5 deletions .changeset/tiny-peaches-brake.md

This file was deleted.

4 changes: 0 additions & 4 deletions plugins/auth-backend/api-report.md
Expand Up @@ -619,10 +619,6 @@ export const providers: Readonly<{
) => AuthProviderFactory_2;
resolvers: never;
}>;
pinniped: Readonly<{
create: () => AuthProviderFactory_2;
resolvers: never;
}>;
saml: Readonly<{
create: (
options?:
Expand Down
17 changes: 0 additions & 17 deletions plugins/auth-backend/src/providers/pinniped/index.ts

This file was deleted.

36 changes: 0 additions & 36 deletions plugins/auth-backend/src/providers/pinniped/provider.test.ts

This file was deleted.

32 changes: 0 additions & 32 deletions plugins/auth-backend/src/providers/pinniped/provider.ts

This file was deleted.

3 changes: 0 additions & 3 deletions plugins/auth-backend/src/providers/providers.ts
Expand Up @@ -33,7 +33,6 @@ import { saml } from './saml';
import { AuthProviderFactory } from './types';
import { bitbucketServer } from './bitbucketServer';
import { easyAuth } from './azure-easyauth';
import { pinniped } from './pinniped';

/**
* All built-in auth provider integrations.
Expand All @@ -57,7 +56,6 @@ export const providers = Object.freeze({
oidc,
okta,
onelogin,
pinniped,
saml,
easyAuth,
});
Expand Down Expand Up @@ -85,5 +83,4 @@ export const defaultAuthProviderFactories: {
bitbucket: bitbucket.create(),
bitbucketServer: bitbucketServer.create(),
atlassian: atlassian.create(),
pinniped: pinniped.create(),
};

0 comments on commit 5a96ebf

Please sign in to comment.