aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/core/auth/token.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-12-25 22:55:53 +0100
committerMichael Muré <batolettre@gmail.com>2019-12-25 23:25:39 +0100
commit864d3ed33597211f22177fce6ecb7e741db795b5 (patch)
tree94ee4e247291de89abd842cd77a39dfb3919fe55 /bridge/core/auth/token.go
parente96d8e6771086e20639a16abf6af30f2faa006a0 (diff)
downloadgit-bug-864d3ed33597211f22177fce6ecb7e741db795b5.tar.gz
bridge: allow to configure and pull without having set a user first
- init() only the importer or exporter as required - assign a "default user" user Id to credentials at creation if no user has been set - "bridge auth": also display the user - "bridge auth show": adapt to a potential "default user" user Id - "bridge configure": allow to run without a user set - "bridge pull": allow to run without a user set - "user adopt": replace "default user" by the actual user id when run
Diffstat (limited to 'bridge/core/auth/token.go')
-rw-r--r--bridge/core/auth/token.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/bridge/core/auth/token.go b/bridge/core/auth/token.go
index 12a3bfc0..8333ef12 100644
--- a/bridge/core/auth/token.go
+++ b/bridge/core/auth/token.go
@@ -59,6 +59,10 @@ func (t *Token) UserId() entity.Id {
return t.userId
}
+func (t *Token) updateUserId(id entity.Id) {
+ t.userId = id
+}
+
func (t *Token) Target() string {
return t.target
}
@@ -88,7 +92,7 @@ func (t *Token) Validate() error {
return nil
}
-func (t *Token) ToConfig() map[string]string {
+func (t *Token) toConfig() map[string]string {
return map[string]string{
tokenValueKey: t.Value,
}