mirror of
https://github.com/elyby/chrly.git
synced 2024-11-27 01:01:59 +05:30
Fix passing emitter to the authentication service
This commit is contained in:
parent
d526b74d07
commit
f11dee57ff
@ -102,7 +102,10 @@ var serveCmd = &cobra.Command{
|
|||||||
SkinsRepo: skinsRepo,
|
SkinsRepo: skinsRepo,
|
||||||
CapesRepo: capesRepo,
|
CapesRepo: capesRepo,
|
||||||
MojangTexturesProvider: mojangTexturesProvider,
|
MojangTexturesProvider: mojangTexturesProvider,
|
||||||
Authenticator: &http.JwtAuth{Key: []byte(viper.GetString("chrly.secret"))},
|
Authenticator: &http.JwtAuth{
|
||||||
|
Key: []byte(viper.GetString("chrly.secret")),
|
||||||
|
Emitter: dispatcher,
|
||||||
|
},
|
||||||
TexturesExtraParamName: viper.GetString("textures.extra_param_name"),
|
TexturesExtraParamName: viper.GetString("textures.extra_param_name"),
|
||||||
TexturesExtraParamValue: viper.GetString("textures.extra_param_value"),
|
TexturesExtraParamValue: viper.GetString("textures.extra_param_value"),
|
||||||
}).CreateHandler()
|
}).CreateHandler()
|
||||||
|
Loading…
Reference in New Issue
Block a user