1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/gallery.service.ts

19 lines
551 B
TypeScript
Raw Normal View History

2016-03-20 23:54:30 +08:00
///<reference path="../../browser.d.ts"/>
2016-05-09 23:04:56 +08:00
import {Injectable} from "@angular/core";
import {NetworkService} from "../model/network/network.service.ts";
2016-03-20 23:54:30 +08:00
import {Message} from "../../../common/entities/Message";
2016-05-09 23:04:56 +08:00
import {Directory} from "../../../common/entities/Directory";
2016-03-20 23:54:30 +08:00
@Injectable()
2016-05-09 23:04:56 +08:00
export class GalleryService {
2016-05-09 23:04:56 +08:00
constructor(private _networkService:NetworkService) {
2016-03-20 23:54:30 +08:00
}
2016-05-09 23:04:56 +08:00
public getDirectory(directoryName:string):Promise<Message<Directory>> {
return this._networkService.getJson("/gallery/content/" + directoryName);
2016-03-20 23:54:30 +08:00
}
}