jira

JIRA REST API to get work log - “You do not have the permission to see the specified issue”

自闭症网瘾萝莉.ら 提交于 2019-12-10 15:42:34
问题 I want to get work log of a specified issue on Jira. According to this document https://docs.atlassian.com/jira/REST/latest/#d2e774 I'm using this format giving my issue id: /rest/api/2/issue/{issueIdOrKey}/worklog Although I have logged in Jira, I got this error: {"errorMessages":["You do not have the permission to see the specified issue.","Login Required"],"errors":{}} Besides, I can see work log on Jira's interface. I don't think there is an permission constraint. Any help to solve? 回答1:

Adding attachment to Jira's api

时光总嘲笑我的痴心妄想 提交于 2019-12-10 15:19:40
问题 I am trying to attach a file to a Jira case, using their API. I am doing this in Drupal 6 (PHP v.5.0). Here is the code I have: $ch = curl_init(); $header = array( 'Content-Type: multipart/form-data', 'X-Atlassian-Token: no-check' ); $attachmentPath = $this->get_file_uploads(); //$attachmentPath comes out to be something like: //http://localhost/mySite/web/system/files/my_folder/DSC_0344_3.JPG $data = array('file'=>"@". $attachmentPath, 'filename'=>'test.png'); $url= 'https://mysite.atlassian

How do I change the path to catalina.out?

家住魔仙堡 提交于 2019-12-10 14:55:14
问题 I am unable to find the setting to move the catalina.out logs to /var/log/jira . I successfully set the path to the following files access_log.log , catalina.log , host-manager.log , localhost.log and manager.log by modifying the properties in the conf/logging.properties file. However I'not sure how to set the path to catalina.out which still gets logged in JIRA-HOME/logs . The logging.properties had the following attributes: java.util.logging.ConsoleHandler.level = FINE java.util.logging

Cannot create AsynchronousJiraRestClientFactory (Dependency Issue)

╄→гoц情女王★ 提交于 2019-12-10 14:01:59
问题 I previously made a restful client application in Java to mass-manipulate tickets and expedite workflow, however, I want to create a more holistic application that utilizes the actual JIRA api instead of parsing JSON in my own solution. I have a very simple code-block to create a client: public class SimpleMain { public static void main(String[] args) { try { JiraRestClient client = new AsynchronousJiraRestClientFactory() .createWithBasicHttpAuthentication(new URI("https://jira.redacted.com")

Filter issues updated by particular user in period of time using JQL

时光毁灭记忆、已成空白 提交于 2019-12-10 13:57:34
问题 Is there any way to find all issues updated by particular user in particular time period in every day by using JQL or is there any plugin to solve this?. 回答1: If by updated you mean change of status you can chack something like this: status changed by "user.name" and updated > startOfDay("-1") Of course the start of the day -1 shows everything updated since yesterday, but you can also go with hours. 回答2: You could run a query like this: reporter = usernameGoesHere AND created > startOfDay()

JIRA JQL: Issues resolved in the current sprint

血红的双手。 提交于 2019-12-10 13:18:47
问题 I would like to be able to filter for issues that are have been resolved in the current sprint. Generally this would be used to prevent issues resolved in a previous sprint but delayed in testing (not reopened) showing up when we are discussing what developers achieved this sprint. Closed issues should also appear, but they are not a problem, as if they were closed last sprint, they wouldn't roll over into this one anyway. In mock-JQL, it would go something like this: project = "Project name"

jira问题更改项目

纵饮孤独 提交于 2019-12-10 10:27:35
1.点击“问题”在问题中,筛选你要修改的问题,以下是以创建用户为搜索条件,然后点击“工具”---移动所有问题 2.选择要移动的问题,选择项目,进行移动 来源: https://www.cnblogs.com/heishanyaoren/p/12015015.html

Public issues in JIRA

筅森魡賤 提交于 2019-12-10 03:48:54
问题 Is there a way to make issues publicly viewable in JIRA for a particular project? By public I mean that it is not required to login to view them. All other projects should stay private. 回答1: Create a specific permission scheme for your 'public project' Grant anyone browse rights Associate the new or modified permission scheme to the project(s) you want to open up. That's it. Francis 来源: https://stackoverflow.com/questions/5393853/public-issues-in-jira

TFS vs. JIRA/Bamboo/SVN [closed]

雨燕双飞 提交于 2019-12-10 02:45:05
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . this week I participated a presentation of the 2008 TFS. Currently we are using Jira and Svn (and maybe Bamboo). What solution to you

Xcode 7 doesn't show new remote branches using Git

自作多情 提交于 2019-12-10 02:45:01
问题 In Xcode 7, after creating a new remote branch using Jira/Stash, when I pull master, the new branch used to show up as an optional origin branch. Now newer branches don't show up at all, so creating a new local branch isn't as easy. Before you could go to Source Control > hover over your current working copy > select "Switch to Branch" and scroll to see the new origin/ branch. Once that was selected, Xcode automatically created a local branch. Now I have to manually name/create a new branch