Hi all!
I create "Rédacteur" a custom field.
I want to put the issue.assignee in this custom field.
I tried:
"Rédacteur": "{{issue.assignee}}" - nothing happened
"Rédacteur": {{issue.assignee}} - error JSON...
What is the right syntax please?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@My Smart Content you can do the following and it will work:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@My Smart Content and on the advanced editing with JSON the proper format would be:
{
"fields": {
"customfield_10191": { "id": "{{issue.assignee}}" }
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Where customfield_10191 you should replace this with your Redacteur field id.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.