.net 和 jirasoapservice
如何创建未分配的问题?默认情况下,所有问题都分配给创建它的用户。 我尝试使用新用户,但它不起作用:
JiraService.RemoteUser reporter = _jiraSoapService.getUser(_token, _userName);
JiraService.RemoteUser assignee = new JiraService.RemoteUser();
issue.reporter = reporter.name;
issue.assignee = assignee.name;
JiraService.RemoteIssue returnedIssue = _jiraSoapService.createIssue(_token, issue);
How I can create unassigned issue? By default all issue assigned for user who created it .
I try using new user but it don't work:
JiraService.RemoteUser reporter = _jiraSoapService.getUser(_token, _userName);
JiraService.RemoteUser assignee = new JiraService.RemoteUser();
issue.reporter = reporter.name;
issue.assignee = assignee.name;
JiraService.RemoteIssue returnedIssue = _jiraSoapService.createIssue(_token, issue);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要设置 Jira 以允许未分配的问题。转到管理部分的常规配置页面,然后打开“允许未分配的问题”标志。确保编辑项目并将“默认受让人:”更改为“未分配”。否则,默认受让人将继续是最初分配给该项目的人。
http://confluence.atlassian.com/display/JIRA/Configuring+JIRA+Options
You need to set up Jira so that it allows unassigned issue. Go to the General Configuration page of the Administration section and turn the 'Allow Unassigned Issues' flag on. Make sure to edit the project and change the "Default Assignee:" to be "Unassigned." Otherwise, the default assignee will continue to be whoever was originally assigned to the project.
http://confluence.atlassian.com/display/JIRA/Configuring+JIRA+Options