aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/dashboard/dashboard.component.ts
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-04-04 23:14:14 -0400
committersowgro <tpoke.ferrari@gmail.com>2025-04-04 23:14:14 -0400
commit7c49fcd788692a898e985cb156dd9fd910c05790 (patch)
treefad3944da55014731cf0455ea416df72c16ebb4c /ufund-ui/src/app/components/dashboard/dashboard.component.ts
parentf70e86470f7083cda1949ff97556d9e39578ce1d (diff)
downloadJellySolutions-7c49fcd788692a898e985cb156dd9fd910c05790.tar.gz
JellySolutions-7c49fcd788692a898e985cb156dd9fd910c05790.tar.bz2
JellySolutions-7c49fcd788692a898e985cb156dd9fd910c05790.zip
Add new authentication to dashboard, cleanup
Diffstat (limited to '')
-rw-r--r--ufund-ui/src/app/components/dashboard/dashboard.component.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/ufund-ui/src/app/components/dashboard/dashboard.component.ts b/ufund-ui/src/app/components/dashboard/dashboard.component.ts
index 9bf7627..1181608 100644
--- a/ufund-ui/src/app/components/dashboard/dashboard.component.ts
+++ b/ufund-ui/src/app/components/dashboard/dashboard.component.ts
@@ -5,6 +5,7 @@ import {CupboardService} from '../../services/cupboard.service';
import {UsersService} from '../../services/users.service';
import {BehaviorSubject} from 'rxjs';
import {GoalType, Need} from '../../models/Need';
+import {userType} from '../../models/User';
@Component({
selector: 'app-dashboard',
@@ -55,4 +56,5 @@ export class DashboardComponent implements OnInit{
}
+ protected readonly userType = userType;
}