Add history page
This commit is contained in:
@@ -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";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user