1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/frontend/app/gallery/gallery.service.ts

26 lines
591 B
TypeScript
Raw Normal View History

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