Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何获取 JIRA 用户数?我怎样才能获得 JIRA 获得许可的用户号?
如果您提供使用不同层的示例,例如使用数据库查询、JIRA API 调用或在 JIRA 插件中调用的方法,我将不胜感激。// JIRA 实例正在使用 Crowd
这是从组 jira-users 中获取用户的方法。只有此用户组会影响许可证用户计数。
ComponentAccessor.getGroupManager().getUserNamesInGroup("jira-users").size();
你也可以在你的插件中注入 groupManager。
我不知道如何获得 JIRA 许可的用户编号。我认为它没有存储在您的实例数据或数据库中。