如何使用 jirasoap 记录给定问题的工作?
我正在开发一个 Ruby on Rails 应用程序,该应用程序通过 Jira Soap 连接到 Jira。我浏览了 Jira SOAP API 文档,但找不到记录问题时间的方法。我必须使用什么方法来允许用户记录某些问题的时间?
I'm working on a ruby on rails app which connects to Jira through jira soap. I browsed through the Jira SOAP API documentation but could not figure out a way to log time for an issue. What method(s) do I've to use to allow users to log time for some issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
addWorklogAndAutoAdjustRemainingEstimate 是我在脚本中使用的一个,
这是一段可能对您有用的 python 代码片段:
addWorklogAndAutoAdjustRemainingEstimate is the one I'm using in my scripts
This is a snippet of python code that might be useful to you:
通过addWorkLogXxx 方法,其中
Xxx
是如何处理估计的。Via the addWorkLogXxx methods, where
Xxx
is what to do with the estimate.对于红宝石开发者来说,
jira4r gem 的工作日志类可以通过以下方式访问:
Jira4R::V2::RemoteWorklog
for ruby developers,
worklog class from jira4r gem can be accessed via :
Jira4R::V2::RemoteWorklog