Integrate import repository function into ui

This commit is contained in:
Eduard Heimbuch
2020-11-25 11:23:43 +01:00
parent ff2b4d8acd
commit 10ed51733c
7 changed files with 251 additions and 205 deletions

View File

@@ -39,6 +39,12 @@ export type RepositoryCreation = Repository & {
contextEntries: { [key: string]: any };
};
export type RepositoryImport = Repository & {
importUrl?: string;
username?: string;
password?: string;
};
export type Namespace = {
namespace: string;
_links: Links;