feat(editor): Add version controls settings (WIP) (#6036)

* feat(editor): Version control paywall (WIP)

* fix(editor): remove version control docs link

* feat(editor): Adding version control settings (WIP)

* feat(editor): Adding version control settings (WIP)

* fix(editor): use rest api root path in version control

* fix(editor): adding preferences

* fix(editor): adding preferences

* fix(editor): change store action name
This commit is contained in:
Csaba Tuncsik
2023-04-26 17:52:53 +02:00
committed by GitHub
parent f91923a04b
commit 0c9ce3a2ec
8 changed files with 358 additions and 20 deletions

View File

@@ -1432,3 +1432,14 @@ export type SamlPreferencesExtractedData = {
entityID: string;
returnUrl: string;
};
export type VersionControlPreferences = {
connected: boolean;
repositoryUrl: string;
authorName: string;
authorEmail: string;
branchName: string;
branchReadOnly: boolean;
branchColor: string;
publicKey?: string;
};