diff options
author | Josh Bialkowski <josh.bialkowski@gmail.com> | 2019-12-13 13:17:26 -0800 |
---|---|---|
committer | Josh Bialkowski <josh.bialkowski@gmail.com> | 2019-12-18 07:42:16 -0800 |
commit | 4e64c834e2cd672f3daff59fe8117873688dfebc (patch) | |
tree | 694269594f13f4f9d545e0bd8a2c8a08df1e5a9e /bridge/jira/config.go | |
parent | 98bd372e604285cf79ffcf04d0fdf423200cab8f (diff) | |
download | git-bug-4e64c834e2cd672f3daff59fe8117873688dfebc.tar.gz |
codereview #5: reverse-map and ImportWarning
* Fix git config reader can't read values with spaces
* Add bug-id-revmap config option for the reverse map, and use this
in the importer
* Add NewImportWarning for things that aren't exactly errors.
Use this for unhandled changelog events.
* Add NewExportWarning for things that aren't exactly errors.
Use this for un-exportable status changes.
* Strip newlines from titles on import
Diffstat (limited to 'bridge/jira/config.go')
-rw-r--r-- | bridge/jira/config.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bridge/jira/config.go b/bridge/jira/config.go index e23ee845..fc21111d 100644 --- a/bridge/jira/config.go +++ b/bridge/jira/config.go @@ -26,6 +26,7 @@ const ( keyUsername = "username" keyPassword = "password" keyIDMap = "bug-id-map" + keyIDRevMap = "bug-id-revmap" keyCreateDefaults = "create-issue-defaults" keyCreateGitBug = "create-issue-gitbug-id" |