adds combobox to select namespace strategy

This commit is contained in:
Sebastian Sdorra
2019-03-11 14:48:48 +01:00
parent 3f6d1ed4fd
commit 158bb8bf8a
9 changed files with 411 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
// @flow
import type { Links } from "./hal";
export type NamespaceStrategies = {
current: string,
available: string[],
_links: Links
};

View File

@@ -26,3 +26,5 @@ export type { SubRepository, File } from "./Sources";
export type { SelectValue, AutocompleteObject } from "./Autocomplete";
export type { AvailableRepositoryPermissions, RepositoryRole } from "./AvailableRepositoryPermissions";
export type { NamespaceStrategies } from "./NamespaceStrategies";