chore: fix typos
This commit is contained in:
parent
6d6242c27a
commit
7802d6e018
|
@ -137,7 +137,7 @@ secret_base64_encoded(_) -> undefined.
|
||||||
|
|
||||||
public_key(type) -> string();
|
public_key(type) -> string();
|
||||||
public_key(desc) -> ?DESC(?FUNCTION_NAME);
|
public_key(desc) -> ?DESC(?FUNCTION_NAME);
|
||||||
public_key(required) -> ture;
|
public_key(required) -> true;
|
||||||
public_key(_) -> undefined.
|
public_key(_) -> undefined.
|
||||||
|
|
||||||
endpoint(type) -> string();
|
endpoint(type) -> string();
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{application, emqx_dashboard_sso, [
|
{application, emqx_dashboard_sso, [
|
||||||
{description, "EMQX Dashboard Single Sign-On"},
|
{description, "EMQX Dashboard Single Sign-On"},
|
||||||
{vsn, "0.1.3"},
|
{vsn, "0.1.4"},
|
||||||
{registered, [emqx_dashboard_sso_sup]},
|
{registered, [emqx_dashboard_sso_sup]},
|
||||||
{applications, [
|
{applications, [
|
||||||
kernel,
|
kernel,
|
||||||
|
|
|
@ -163,7 +163,7 @@ convert_certs(
|
||||||
) ->
|
) ->
|
||||||
case
|
case
|
||||||
emqx_tls_lib:ensure_ssl_files(
|
emqx_tls_lib:ensure_ssl_files(
|
||||||
Dir, #{enable => ture, certfile => Cert, keyfile => Key}, #{}
|
Dir, #{enable => true, certfile => Cert, keyfile => Key}, #{}
|
||||||
)
|
)
|
||||||
of
|
of
|
||||||
{ok, #{certfile := CertPath, keyfile := KeyPath}} ->
|
{ok, #{certfile := CertPath, keyfile := KeyPath}} ->
|
||||||
|
|
Loading…
Reference in New Issue