mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
35 lines
873 B
TypeScript
35 lines
873 B
TypeScript
///<reference path="../../browser.d.ts"/>
|
|
|
|
import {Injectable} from 'angular2/core';
|
|
import {NetworkService} from "../model/network/network.service.ts";
|
|
import {Http} from "angular2/http";
|
|
import {Message} from "../../../common/entities/Message";
|
|
import {User} from "../../../common/entities/User";
|
|
|
|
@Injectable()
|
|
export class AdminService extends NetworkService{
|
|
|
|
|
|
constructor(_http:Http){
|
|
super(_http);
|
|
}
|
|
|
|
public createUser(user:User): Promise<Message<string>>{
|
|
return this.putJson("/user",{newUser:user});
|
|
}
|
|
|
|
|
|
public getUsers():Promise<Message<Array<User>>>{
|
|
return this.getJson("/user/list");
|
|
}
|
|
|
|
|
|
public deleteUser(user:User) {
|
|
return this.deleteJson("/user/"+user.id);
|
|
}
|
|
|
|
public updateRole(user:User) {
|
|
return this.postJson("/user/"+user.id+"/role",{newRole:user.role});
|
|
}
|
|
}
|