Added group permissions. Added some global styles. Made groups rely on services' data.

This commit is contained in:
Tom
2025-03-22 21:58:30 +00:00
parent d19c5445d6
commit 9de4424736
38 changed files with 936 additions and 137 deletions

View File

@ -1,5 +1,5 @@
<main>
@for (action of actions; track $index) {
@for (action of actions; track action.name) {
<button type="button"
class="container"
(click)="modify(action)">

View File

@ -10,7 +10,7 @@
<mat-select-trigger>
<mat-icon matPrefix>filter_list</mat-icon>&nbsp;{{filter.name}}
</mat-select-trigger>
@for (item of filters; track $index) {
@for (item of filters; track item.name) {
<mat-option value="{{$index}}">{{item.name}}</mat-option>
}
</mat-select>