We use confiforms to create Jira tickets, now we have migrated to confluence/jira cloud.
How can we format this in ADF?
There is absolutely no relation between ADF and Velocity
And you can still use API version 2 without any ADF formatting to create Jira issues with ConfiForms cloud
Alex
@Alex Medved _ConfiForms_ Will version 2 ever be deprecated? Would using v2 only be a temporary solution?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I dont know, this is something for Atlassian to answer
We have the support for both versions in ConfiForms
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Alex Medved _ConfiForms_
Okay, well is there a way to do this in v3? With ADF? I assume there is but not sure how to get it to work
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, for ConfiForms and Velocity templates there is no difference what to do
So, based on the https://developer.atlassian.com/cloud/jira/platform/apis/document/structure/
I guess this will be something along these lines
...
"description": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Request the Following"
}
]
}
#if(${env.hasId('test')})
,{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "option1 details"
}
]
}
#end
#if(${env.hasId('prod')})
,{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "option2 details"
}
]
}
#end
]
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.