You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
520 B
19 lines
520 B
import { Injectable } from '@angular/core';
|
|
import {HttpClient} from "@angular/common/http";
|
|
import {ShityPaginator} from "../entities/ShityPaginator";
|
|
import {Ban} from "../entities/ban/Ban";
|
|
import {map, Observable} from "rxjs";
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class BanService {
|
|
|
|
constructor(private http: HttpClient) { }
|
|
|
|
getBanList(): Observable<ShityPaginator<Ban>> {
|
|
return this.http.get("api/web/banlist").pipe(
|
|
map((res) => ShityPaginator.newObj().fromData(res, "bans"))
|
|
)
|
|
}
|
|
}
|
|
|