Wiki-Quellcode von KanbanWorkaroundService

Zuletzt geändert von Daniel Herrmann am 2026/03/08 12:48

Zeige letzte Bearbeiter
1 {{velocity}}
2 ## This page is used to workaround an issue on the platform XWIKI-20704. Remove the page when the parent
3 ## of this project will be greater or equal to the version when the issue will be fixed.
4 #if($xcontext.action == 'get' && "$!{request.outputSyntax}" == 'plain')
5 #set ($checkDoc = $xwiki.getDocument("$!request.docRef"))
6 #set ($checkObj = $checkDoc.getObject("$!request.className"))
7 $response.setContentType('application/json')
8 $jsontool.serialize({
9 'status': $checkObj.getProperty("$!request.propertyName").value
10 })
11 #end
12 {{/velocity}}