Add history page

This commit is contained in:
2025-04-11 21:20:02 +02:00
parent 4b891dd672
commit 2289b14b5a
16 changed files with 199 additions and 25 deletions
+19
View File
@@ -0,0 +1,19 @@
import {Component} from '@angular/core';
import {HeaderComponent} from "../header/header.component";
import {HistoryComponent} from './history/history.component';
@Component({
selector: 'app-bans',
imports: [
HeaderComponent,
HistoryComponent
],
templateUrl: './bans.component.html',
styleUrl: './bans.component.scss'
})
export class BansComponent {
public userType: 'player' | 'staff' = "player";
public punishmentType: 'all' | 'ban' | 'mute' | 'kick' | 'warn' = "all";
}