2018-03-07 12:08:03 +01:00
|
|
|
export class CommunityInfo {
|
|
|
|
title: string;
|
|
|
|
shortTitle:string;
|
|
|
|
communityId: string;
|
|
|
|
queryId: string;
|
2018-03-26 16:13:28 +02:00
|
|
|
type: string;
|
2018-03-07 12:08:03 +01:00
|
|
|
logoUrl: string;
|
|
|
|
description: string;
|
|
|
|
managers: string[];
|
|
|
|
date:Date;
|
|
|
|
subjects: string[];
|
2018-05-03 13:27:42 +02:00
|
|
|
status:string;
|
2018-11-21 10:34:39 +01:00
|
|
|
zenodoCommunity:string;
|
2019-04-13 20:26:46 +02:00
|
|
|
isSubscribed: boolean;
|
|
|
|
isManager: boolean;
|
2018-03-07 12:08:03 +01:00
|
|
|
}
|
2020-06-30 17:56:56 +02:00
|
|
|
export const prodReadyCommunities = ["dh-ch", "ee", "fam", "mes", "ni", "covid-19", "dariah", "epos", "egi"];
|