Pass name/email/phone info to the new console front end (#2180)

This commit is contained in:
gbrodman
2023-10-16 16:51:35 -04:00
committed by GitHub
parent 4f53ae0e89
commit 779da518df
6 changed files with 49 additions and 13 deletions
@@ -19,8 +19,11 @@ import { MatSnackBar } from '@angular/material/snack-bar';
import { GlobalLoader, GlobalLoaderService } from './globalLoader.service';
export interface UserData {
isAdmin: boolean;
globalRole: string;
isAdmin: boolean;
productName: string;
supportEmail: string;
supportPhoneNumber: string;
technicalDocsUrl: string;
}