.net 和 jirasoapservice

发布于 2025-01-04 16:05:24 字数 382 浏览 0 评论 0原文

如何创建未分配的问题?默认情况下,所有问题都分配给创建它的用户。 我尝试使用新用户,但它不起作用:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

想你只要分分秒秒 2025-01-11 16:05:24

您需要设置 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文