diff options
author | Alex Auvolat <alex@adnab.me> | 2020-03-05 16:59:37 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-03-05 16:59:37 +0100 |
commit | 62dae5a0a2ad9cead08aa13810561e9436d5a40f (patch) | |
tree | e9f219c5dcfce4363014720a48b43941f9c266ef /connector | |
parent | b7090546a9baf7ca95f5709ca1ec9f09879078a4 (diff) | |
download | easybridge-62dae5a0a2ad9cead08aa13810561e9436d5a40f.tar.gz easybridge-62dae5a0a2ad9cead08aa13810561e9436d5a40f.zip |
`client_pickle` messenger configuration param
so that a serialized client object can be passed, bypassing the need to re-login at each restart
Diffstat (limited to 'connector')
-rw-r--r-- | connector/external/config.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/connector/external/config.go b/connector/external/config.go index 03e1feb..9c8e123 100644 --- a/connector/external/config.go +++ b/connector/external/config.go @@ -45,7 +45,10 @@ func init() { Name: "password", Description: "Password", IsPassword: true, - Required: true, + }, + &ConfigEntry{ + Name: "client_pickle", + Description: "Client pickle (alternative login method)", }, &ConfigEntry{ Name: "initial_backlog", |