member_webapp/@overflow/target/service/target.service.ts

25 lines
480 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:25:38 +00:00
import { Target } from '@overflow/commons-typescript/model/target';
2018-04-06 11:02:18 +00:00
@Injectable()
export class TargetService {
public constructor(
private rpcService: RPCService,
) {
}
2018-04-30 10:59:32 +00:00
public modify(target: Target): Observable<Target> {
return this.rpcService.call('TargetService.modify', target);
2018-04-06 11:02:18 +00:00
}
}