mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
31 lines
849 B
TypeScript
31 lines
849 B
TypeScript
import {Injectable} from "@angular/core";
|
|
import {UserDTO} from "../../../../common/entities/UserDTO";
|
|
import {NetworkService} from "../../model/network/network.service";
|
|
import {Message} from "../../../../common/entities/Message";
|
|
|
|
@Injectable()
|
|
export class UserManagerSettingsService {
|
|
|
|
|
|
constructor(private _networkService: NetworkService) {
|
|
}
|
|
|
|
public createUser(user: UserDTO): Promise<Message<string>> {
|
|
return this._networkService.putJson("/user", {newUser: user});
|
|
}
|
|
|
|
|
|
public getUsers(): Promise<Message<Array<UserDTO>>> {
|
|
return this._networkService.getJson("/user/list");
|
|
}
|
|
|
|
|
|
public deleteUser(user: UserDTO) {
|
|
return this._networkService.deleteJson("/user/" + user.id);
|
|
}
|
|
|
|
public updateRole(user: UserDTO) {
|
|
return this._networkService.postJson("/user/" + user.id + "/role", {newRole: user.role});
|
|
}
|
|
}
|