메소드 | 설명 | |
---|---|---|
GetProjects ( string &error ) : List |
Get a list of all projects the current user has visibility of.
|
|
JiraComm ( string server, string user, |
||
SubmitBug ( string projectKey, string bugTitle, string bugDescription, int bugPriority, System.DateTime bugCreatedDate, string bugAuthor, string bugAssignedTo, List |
Creates a new JIRA issue (a bug).
|
메소드 | 설명 | |
---|---|---|
AttachFile ( string server, string user, |
Attach a file to a JIRA issue (bug). https://docs.atlassian.com/jira/REST/latest/#idp1726000
|
|
GetJson ( string server, string path, string username, |
Gets a JSON object from the JIRA server using an HTTP GET
|
|
GetJson ( string server, string path, string username, string password, string &error ) : JToken |
Gets a JSON object from the JIRA server using an HTTP GET
|
|
PostJson ( string server, string path, string username, |
Sends a JSON object to a JIRA server using an HTTP POST and gets the JSON response from the server.
|
public JiraComm ( string server, string user, |
||
server | string | |
user | string | |
password | ||
리턴 | System |
public SubmitBug ( string projectKey, string bugTitle, string bugDescription, int bugPriority, System.DateTime bugCreatedDate, string bugAuthor, string bugAssignedTo, List |
||
projectKey | string | The projects key e.g. TSCB. |
bugTitle | string | The title of the bug. |
bugDescription | string | The detailed description of the bug. |
bugPriority | int | The priority of the bug. |
bugCreatedDate | System.DateTime | The date the bug was created. |
bugAuthor | string | The author of the bug. |
bugAssignedTo | string | The person/group the bug is assigned to. |
bugAttachments | List |
List of files to attach to the bug. |
error | string | Any errors during bug creation are written here. |
리턴 | string |