merge with develop

This commit is contained in:
Eduard Heimbuch
2020-10-19 13:34:54 +02:00
34 changed files with 736 additions and 220 deletions

View File

@@ -49,5 +49,6 @@ export type Config = {
namespaceStrategy: string;
loginInfoUrl: string;
releaseFeedUrl: string;
mailDomainName: string;
_links: Links;
};

View File

@@ -27,7 +27,8 @@ import { Links } from "./hal";
export type Me = {
name: string;
displayName: string;
mail: string;
mail?: string;
fallbackMail?: string;
groups: string[];
_links: Links;
};

View File

@@ -27,13 +27,13 @@ import { Links } from "./hal";
export type DisplayedUser = {
id: string;
displayName: string;
mail: string;
mail?: string;
};
export type User = {
displayName: string;
name: string;
mail: string;
mail?: string;
password: string;
active: boolean;
type?: string;