diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-07-23 17:29:53 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-07-23 17:29:53 +0200 |
commit | 0329bfdf440ec48c5c5c5c6dbe2ca8519d99b706 (patch) | |
tree | fbff33e372cdd8ca5008a61d9993785baa17b9f4 /bridge/core/bridge.go | |
parent | d098a96407c55281c28bfdea9925df587b4d4400 (diff) | |
download | git-bug-0329bfdf440ec48c5c5c5c6dbe2ca8519d99b706.tar.gz |
bridge/gitlab: change validateProjectURL signature
bridge/gitlab: code cleanup
Diffstat (limited to 'bridge/core/bridge.go')
-rw-r--r-- | bridge/core/bridge.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bridge/core/bridge.go b/bridge/core/bridge.go index abb57ed7..645dac3d 100644 --- a/bridge/core/bridge.go +++ b/bridge/core/bridge.go @@ -19,7 +19,9 @@ var ErrImportNotSupported = errors.New("import is not supported") var ErrExportNotSupported = errors.New("export is not supported") const ( - KeyTarget = "target" + KeyTarget = "target" + KeyOrigin = "origin" + bridgeConfigKeyPrefix = "git-bug.bridge" ) |