fix(core): update

This commit is contained in:
2020-06-22 13:40:05 +00:00
parent 15889699b4
commit ea16521ca3
5 changed files with 80 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ import * as plugins from './ora.plugins';
import { Ora } from './ora.classes.ora';
import { OraOrganization } from './ora.classes.organization';
import { OraList } from './ora.classes.list';
import { OraMilestone } from './ora.classes.milestone';
export interface IOraProject {
archived: boolean;
@@ -81,4 +82,8 @@ export class OraProject implements IOraProject {
public async getLists(): Promise<OraList[]> {
return OraList.getAllLists(this);
}
public async getMileStones(): Promise<OraMilestone[]> {
return OraMilestone.getAllMilestonesForProject(this);
}
}