mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-12-21 15:59:48 +01:00
Add plugin wizard initialization step (#2045)
Adds a new initialization step after setting up the initial administration account that allows administrators to initialize the instance with a selection of plugin sets. Co-authored-by: René Pfeuffer <rene.pfeuffer@cloudogu.com> Co-authored-by: Eduard Heimbuch <eduard.heimbuch@cloudogu.com> Co-authored-by: Matthias Thieroff <matthias.thieroff@cloudogu.com>
This commit is contained in:
committed by
Eduard Heimbuch
parent
6216945f0d
commit
1b18191c57
@@ -26,6 +26,15 @@ import { HalRepresentation, HalRepresentationWithEmbedded } from "./hal";
|
||||
|
||||
type PluginType = "SCM" | "CLOUDOGU";
|
||||
|
||||
export type PluginSet = HalRepresentation & {
|
||||
id: string;
|
||||
name: string;
|
||||
sequence: number;
|
||||
features: string[];
|
||||
plugins: Plugin[];
|
||||
images: Record<string, string>;
|
||||
};
|
||||
|
||||
export type Plugin = HalRepresentation & {
|
||||
name: string;
|
||||
version: string;
|
||||
|
||||
Reference in New Issue
Block a user