aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/need-list
diff options
context:
space:
mode:
authorbenal01 <bja4245@rit.edu>2025-03-17 18:42:40 -0400
committerbenal01 <bja4245@rit.edu>2025-03-17 18:42:40 -0400
commit0287d0ebd22b88c2d41f2bdb67db812c35d9024c (patch)
tree715d6a2da27311defed76c8bd2ed4639c584dbf3 /ufund-ui/src/app/components/need-list
parent7057f8ad5e0aaf6527477a68c229db659cd674ff (diff)
downloadJellySolutions-0287d0ebd22b88c2d41f2bdb67db812c35d9024c.tar.gz
JellySolutions-0287d0ebd22b88c2d41f2bdb67db812c35d9024c.tar.bz2
JellySolutions-0287d0ebd22b88c2d41f2bdb67db812c35d9024c.zip
hide admin only management elements if user is not an admin
Diffstat (limited to 'ufund-ui/src/app/components/need-list')
-rw-r--r--ufund-ui/src/app/components/need-list/need-list.component.html4
-rw-r--r--ufund-ui/src/app/components/need-list/need-list.component.ts10
2 files changed, 10 insertions, 4 deletions
diff --git a/ufund-ui/src/app/components/need-list/need-list.component.html b/ufund-ui/src/app/components/need-list/need-list.component.html
index 6dd6511..07f6735 100644
--- a/ufund-ui/src/app/components/need-list/need-list.component.html
+++ b/ufund-ui/src/app/components/need-list/need-list.component.html
@@ -13,7 +13,7 @@
<a routerLink="/need/{{need.id}}">
{{need.name}}
</a>
- <button (click)="delete(need.id)">Delete</button>
+ <button (click)="delete(need.id)" *ngIf="isManager()">Delete</button>
</div>
</div>
</div>
@@ -22,5 +22,5 @@
<a routerLink="/need/{{need.id}}">
{{need.name}}
</a>
- <button (click)="delete(need.id)">Delete</button>
+ <button (click)="delete(need.id)" *ngIf="isManager()">Delete</button>
</li>
diff --git a/ufund-ui/src/app/components/need-list/need-list.component.ts b/ufund-ui/src/app/components/need-list/need-list.component.ts
index 8451d5b..6ad9397 100644
--- a/ufund-ui/src/app/components/need-list/need-list.component.ts
+++ b/ufund-ui/src/app/components/need-list/need-list.component.ts
@@ -1,7 +1,8 @@
import { Component } from '@angular/core';
import {Need} from '../../models/Need';
import {CupboardService} from '../../services/cupboard.service';
-
+import { UsersService } from '../../services/users.service';
+import { userType } from '../../models/User';
@Component({
selector: 'app-need-list',
standalone: false,
@@ -13,7 +14,8 @@ export class NeedListComponent {
searchResults: Need[] = [];
constructor(
- private cupboardService: CupboardService
+ private cupboardService: CupboardService,
+ private usersService: UsersService
) {}
ngOnInit(): void {
@@ -85,6 +87,10 @@ export class NeedListComponent {
})
}
+ isManager() {
+ return this.usersService.getCurrentUser()?.type == userType.MANAGER;
+ }
+
back() {
this.searchResults = [];
}