Is it possible to store some infromation in user property keys and use it in issue as customfield value?
Like i have user property key "Pament type" with value "Credit Card"
I want to copy this value to issue customfield "Payment type" when this user is in userfield
Is it possible using jira or some plugins?
Hello,
It is possible. But you need an add-on to provide you a custom field, which would choose user properties.
For example, you could use the Power Custom Fields Premium add-on:
You could create a custom field with a code like this:
return
getUserProperty(
currentUser()
,
"Payment type"
);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.