[mod] datenmodell:link zu local_resource_event hinzugefügt
This commit is contained in:
parent
7ffbf8f35e
commit
d46c48e326
8 changed files with 31 additions and 1 deletions
|
@ -42,6 +42,10 @@ namespace _zeitbild.api
|
|||
"type": "string",
|
||||
"nullable": true,
|
||||
},
|
||||
"link": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
},
|
||||
"description": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
|
|
|
@ -42,6 +42,10 @@ namespace _zeitbild.api
|
|||
"type": "string",
|
||||
"nullable": true,
|
||||
},
|
||||
"link": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
},
|
||||
"description": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
|
|
|
@ -42,6 +42,10 @@ namespace _zeitbild.api
|
|||
"type": "string",
|
||||
"nullable": true,
|
||||
},
|
||||
"link": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
},
|
||||
"description": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
|
|
|
@ -101,6 +101,10 @@ namespace _zeitbild.api
|
|||
"type": "string",
|
||||
"nullable": true,
|
||||
},
|
||||
"link": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
},
|
||||
"description": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
|
|
|
@ -5,7 +5,7 @@ namespace _zeitbild.database
|
|||
/**
|
||||
*/
|
||||
const _compatible_revisions : Array<string> = [
|
||||
"r2",
|
||||
"r3",
|
||||
];
|
||||
|
||||
|
||||
|
|
|
@ -226,6 +226,7 @@ namespace _zeitbild.repository.resource
|
|||
encode_datetime(stuff.event.end)
|
||||
),
|
||||
"location": stuff.event.location,
|
||||
"link": stuff.event.link,
|
||||
"description": stuff.event.description,
|
||||
}
|
||||
}
|
||||
|
@ -280,6 +281,7 @@ namespace _zeitbild.repository.resource
|
|||
decode_datetime(row["end"])
|
||||
),
|
||||
"location": row["location"],
|
||||
"link": row["link"],
|
||||
"description": row["description"],
|
||||
}
|
||||
};
|
||||
|
|
|
@ -382,6 +382,13 @@ namespace _zeitbild.service.calendar
|
|||
:
|
||||
null
|
||||
),
|
||||
"link": (
|
||||
(vevent.url !== undefined)
|
||||
?
|
||||
vevent.url
|
||||
:
|
||||
null
|
||||
),
|
||||
"description": (
|
||||
(vevent.description !== undefined)
|
||||
?
|
||||
|
|
|
@ -46,6 +46,11 @@ namespace _zeitbild
|
|||
|
|
||||
string
|
||||
);
|
||||
link : (
|
||||
null
|
||||
|
|
||||
string
|
||||
);
|
||||
description : (
|
||||
null
|
||||
|
|
||||
|
|
Loading…
Add table
Reference in a new issue