Add fallback email to me dto

This commit is contained in:
René Pfeuffer
2020-10-13 08:51:48 +02:00
parent 343d0b9425
commit 7fc7e33c0c
4 changed files with 38 additions and 6 deletions

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;
};