20 lines
498 B
TypeScript
20 lines
498 B
TypeScript
|
|
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";
|
||
|
|
|
||
|
|
}
|