feat: Gitea backend refactoring (#833)

This commit is contained in:
2023-06-06 17:45:05 +02:00
committed by GitHub
parent 77f5a51be8
commit 6cb1098b40
9 changed files with 293 additions and 173 deletions

View File

@ -570,7 +570,14 @@ export interface MediaLibraryConfig {
folder_support?: boolean;
}
export type BackendType = 'git-gateway' | 'github' | 'gitlab' | 'bitbucket' | 'test-repo' | 'proxy';
export type BackendType =
| 'git-gateway'
| 'github'
| 'gitlab'
| 'gitea'
| 'bitbucket'
| 'test-repo'
| 'proxy';
export type MapWidgetType = 'Point' | 'LineString' | 'Polygon';