mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-12-21 07:49:55 +01:00
Remove plugin center authentication
Squash commits of branch feature/remove_plugin_center_auth: - Remove plugin center authentication - Fix i18n file - Fix tests - Changelog entry
This commit is contained in:
@@ -35,7 +35,6 @@ export type Config = HalRepresentation & {
|
||||
proxyExcludes: string[];
|
||||
skipFailedAuthenticators: boolean;
|
||||
pluginUrl: string;
|
||||
pluginAuthUrl: string;
|
||||
loginAttemptLimitTimeout: number;
|
||||
enabledXsrfProtection: boolean;
|
||||
enabledUserConverter: boolean;
|
||||
|
||||
@@ -16,8 +16,6 @@
|
||||
|
||||
import { HalRepresentation, HalRepresentationWithEmbedded } from "./hal";
|
||||
|
||||
type PluginType = "SCM" | "CLOUDOGU";
|
||||
|
||||
export type PluginSet = HalRepresentation & {
|
||||
id: string;
|
||||
name: string;
|
||||
@@ -37,7 +35,6 @@ export type Plugin = HalRepresentation & {
|
||||
category: string;
|
||||
avatarUrl?: string;
|
||||
pending: boolean;
|
||||
type: PluginType;
|
||||
markedForUninstall?: boolean;
|
||||
dependencies: string[];
|
||||
optionalDependencies: string[];
|
||||
@@ -62,11 +59,3 @@ export type PendingPlugins = HalRepresentationWithEmbedded<{
|
||||
update: Plugin[];
|
||||
uninstall: Plugin[];
|
||||
}>;
|
||||
|
||||
export type PluginCenterAuthenticationInfo = HalRepresentation & {
|
||||
principal?: string;
|
||||
pluginCenterSubject?: string;
|
||||
date?: string;
|
||||
default: boolean;
|
||||
failed: boolean;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user