Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Can I add mandatory fields in Team managed projects?

Franz Lorenz Salas
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 22, 2021

As stated in the question I want to create a team managed Kanban in order to have the option of creating new Issues directly on the Kanban board (Which isn't possible on the company based one).

In order to do that I also need a lot of custom fields and I would want to make some of the mandatory (e.g. Where should the object be sent and until when is it needed)

Bildschirmfoto 2021-10-22 um 12.04.09.png

Sadly I don't see any option to make fields mandatory. Is there a workaround for this?

 

Thx for your answers

1 answer

0 votes
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
September 16, 2017

It looks to me like your code is not logging you in.  Without a login, you don't have permission to updates the issue.

Hari Prasath P
Contributor
September 18, 2017

I am using the same procedure to get the issue details using request and also able to access fields using the below code,

AP.require(['request'], function(request) {
request({
url: 'https://mysite.atlassian.net/rest/api/2/issue/XYZ-5',
type: 'GET',
success: function(response) {
alert("success");
},
error: function (response) {
alert('fail... ');
}
});
});
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
September 18, 2017

Again, your code does not appear to log in, so it has no permission to do things.

Hari Prasath P
Contributor
September 18, 2017

Using the above code GET method worked for me, only POST didn't work. So, can you please help me working with Edit Issues using POST method with a basic example.

Suggest an answer

Log in or Sign up to answer