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

20 lines
584 B
TypeScript
Raw Normal View History

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