fix: deprication warings
This commit is contained in:
parent
5f2ca91fb1
commit
cbcd8904b3
1 changed files with 4 additions and 3 deletions
|
|
@ -19,15 +19,16 @@ defmodule Mv.Accounts.User do
|
||||||
Currently password and SSO with Rauthy as OIDC provider
|
Currently password and SSO with Rauthy as OIDC provider
|
||||||
"""
|
"""
|
||||||
authentication do
|
authentication do
|
||||||
session_identifier Application.get_env(:mv, :session_identifier)
|
session_identifier Application.compile_env(:mv, :session_identifier, :jti)
|
||||||
|
|
||||||
tokens do
|
tokens do
|
||||||
enabled? true
|
enabled? true
|
||||||
token_resource Mv.Accounts.Token
|
token_resource Mv.Accounts.Token
|
||||||
|
|
||||||
require_token_presence_for_authentication? Application.get_env(
|
require_token_presence_for_authentication? Application.compile_env(
|
||||||
:mv,
|
:mv,
|
||||||
:require_token_presence_for_authentication
|
:require_token_presence_for_authentication,
|
||||||
|
false
|
||||||
)
|
)
|
||||||
|
|
||||||
store_all_tokens? true
|
store_all_tokens? true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue