[Library | Trunk]: Add creation and update dates in all levels
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@59890 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
6bc598a8ac
commit
71e98983e1
|
@ -21,8 +21,6 @@ export class Stakeholder {
|
||||||
index_shortName: string;
|
index_shortName: string;
|
||||||
alias: string;
|
alias: string;
|
||||||
defaultId: string;
|
defaultId: string;
|
||||||
isActive: boolean;
|
|
||||||
isPublic: boolean;
|
|
||||||
visibility: Visibility;
|
visibility: Visibility;
|
||||||
creationDate: Date = null;
|
creationDate: Date = null;
|
||||||
updateDate: Date;
|
updateDate: Date;
|
||||||
|
@ -64,6 +62,8 @@ export class Topic {
|
||||||
alias: string;
|
alias: string;
|
||||||
description: string;
|
description: string;
|
||||||
visibility: Visibility;
|
visibility: Visibility;
|
||||||
|
creationDate: Date = null;
|
||||||
|
updateDate: Date;
|
||||||
defaultId: string;
|
defaultId: string;
|
||||||
categories: Category[];
|
categories: Category[];
|
||||||
icon: string;
|
icon: string;
|
||||||
|
@ -85,6 +85,8 @@ export class Category {
|
||||||
name: string;
|
name: string;
|
||||||
alias: string;
|
alias: string;
|
||||||
description: string;
|
description: string;
|
||||||
|
creationDate: Date = null;
|
||||||
|
updateDate: Date;
|
||||||
visibility: Visibility;
|
visibility: Visibility;
|
||||||
defaultId: string;
|
defaultId: string;
|
||||||
subCategories: SubCategory[];
|
subCategories: SubCategory[];
|
||||||
|
@ -105,6 +107,8 @@ export class SubCategory {
|
||||||
name: string;
|
name: string;
|
||||||
alias: string;
|
alias: string;
|
||||||
description: string;
|
description: string;
|
||||||
|
creationDate: Date = null;
|
||||||
|
updateDate: Date;
|
||||||
visibility: Visibility;
|
visibility: Visibility;
|
||||||
defaultId: string;
|
defaultId: string;
|
||||||
charts: Section[];
|
charts: Section[];
|
||||||
|
@ -129,6 +133,8 @@ export class Section {
|
||||||
_id: string;
|
_id: string;
|
||||||
title: string;
|
title: string;
|
||||||
defaultId: string;
|
defaultId: string;
|
||||||
|
creationDate: Date = null;
|
||||||
|
updateDate: Date;
|
||||||
stakeholderAlias: string;
|
stakeholderAlias: string;
|
||||||
type: IndicatorType;
|
type: IndicatorType;
|
||||||
indicators: Indicator[];
|
indicators: Indicator[];
|
||||||
|
@ -148,6 +154,8 @@ export class Indicator {
|
||||||
name: string;
|
name: string;
|
||||||
description: string;
|
description: string;
|
||||||
additionalDescription: string;
|
additionalDescription: string;
|
||||||
|
creationDate: Date = null;
|
||||||
|
updateDate: Date;
|
||||||
type: IndicatorType;
|
type: IndicatorType;
|
||||||
width: IndicatorWidth;
|
width: IndicatorWidth;
|
||||||
tags: string[];
|
tags: string[];
|
||||||
|
|
Loading…
Reference in New Issue