mirror of
https://github.com/interviewstreet/go-jira.git
synced 2024-12-02 08:51:43 +02:00
Fix relative path IssueService.GetCreateMeta
This commit is contained in:
parent
4d53d935db
commit
40923d190e
@ -44,7 +44,7 @@ type MetaIssueType struct {
|
||||
// GetCreateMeta makes the api call to get the meta information required to create a ticket
|
||||
func (s *IssueService) GetCreateMeta(projectkey string) (*CreateMetaInfo, *Response, error) {
|
||||
|
||||
apiEndpoint := fmt.Sprintf("/rest/api/2/issue/createmeta?projectKeys=%s&expand=projects.issuetypes.fields", projectkey)
|
||||
apiEndpoint := fmt.Sprintf("rest/api/2/issue/createmeta?projectKeys=%s&expand=projects.issuetypes.fields", projectkey)
|
||||
|
||||
req, err := s.client.NewRequest("GET", apiEndpoint, nil)
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user