member_webapp/@overflow/noauth-probe/service/noauth-probe.service.ts

34 lines
981 B
TypeScript
Raw Normal View History

2018-04-06 11:02:18 +00:00
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/map';
2018-05-24 06:44:13 +00:00
import { RPCService } from '@loafer/ng-rpc';
2018-04-06 11:02:18 +00:00
2018-05-02 08:09:39 +00:00
import { Domain } from '@overflow/commons-typescript/model/domain';
2018-04-06 11:02:18 +00:00
2018-05-02 08:09:39 +00:00
import { NoAuthProbe } from '@overflow/commons-typescript/model/noauth';
2018-04-06 11:02:18 +00:00
@Injectable()
export class NoAuthProbeService {
public constructor(
private rpcService: RPCService,
) {
}
2018-05-24 11:03:23 +00:00
public readAllByDomainID(domainID: number): Observable<NoAuthProbe[]> {
return this.rpcService.call<NoAuthProbe[]>('NoAuthProbeService.readAllByDomainID', domainID);
2018-04-06 11:02:18 +00:00
}
2018-05-24 11:03:23 +00:00
public acceptNoAuthProbe(noAuthProbeID: number): Observable<NoAuthProbe[]> {
return this.rpcService.call<NoAuthProbe[]>('NoAuthProbeService.acceptNoAuthProbe', noAuthProbeID);
2018-04-06 11:02:18 +00:00
}
2018-05-24 11:03:23 +00:00
public denyNoauthProbe(noAuthProbeID: number): Observable<NoAuthProbe[]> {
return this.rpcService.call<NoAuthProbe[]>('NoAuthProbeService.denyNoauthProbe', noAuthProbeID);
2018-04-06 11:02:18 +00:00
}
}