Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pkg/jira/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ package jira
import (
"context"
"encoding/json"
"fmt"
"net/http"
"os"
"strconv"
"strings"

Expand Down Expand Up @@ -196,11 +198,13 @@ func constructCustomFields(fields map[string]string, data *createRequest) {
data.Fields.M.customFields = make(customField)

for key, val := range fields {
found := false
for _, configured := range configuredFields {
identifier := strings.ReplaceAll(strings.ToLower(strings.TrimSpace(configured.Name)), " ", "-")
if identifier != strings.ToLower(key) {
continue
}
found = true

switch configured.Schema.DataType {
case customFieldFormatOption:
Expand Down Expand Up @@ -230,6 +234,9 @@ func constructCustomFields(fields map[string]string, data *createRequest) {
data.Fields.M.customFields[configured.Key] = val
}
}
if !found {
fmt.Fprintf(os.Stderr, "\nInvalid custom field specified: %s\n", key)
}
}
}

Expand Down