mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-06 00:49:47 +00:00
Merge pull request #4319 from wallabag/feature/token-lifetime-parameters
Add ability to define lifetime token for the API
This commit is contained in:
commit
365b3dd21f
2 changed files with 7 additions and 1 deletions
|
@ -195,7 +195,8 @@ fos_oauth_server:
|
||||||
service:
|
service:
|
||||||
user_provider: fos_user.user_provider.username_email
|
user_provider: fos_user.user_provider.username_email
|
||||||
options:
|
options:
|
||||||
refresh_token_lifetime: 1209600
|
refresh_token_lifetime: "%fos_oauth_server_refresh_token_lifetime%"
|
||||||
|
access_token_lifetime: "%fos_oauth_server_access_token_lifetime%"
|
||||||
|
|
||||||
scheb_two_factor:
|
scheb_two_factor:
|
||||||
trusted_device:
|
trusted_device:
|
||||||
|
|
|
@ -46,6 +46,11 @@ parameters:
|
||||||
fosuser_registration: true
|
fosuser_registration: true
|
||||||
fosuser_confirmation: true
|
fosuser_confirmation: true
|
||||||
|
|
||||||
|
# how long the access token should live in seconds for the API
|
||||||
|
fos_oauth_server_access_token_lifetime: 3600
|
||||||
|
# how long the refresh token should life in seconds for the API
|
||||||
|
fos_oauth_server_refresh_token_lifetime: 1209600
|
||||||
|
|
||||||
from_email: no-reply@wallabag.org
|
from_email: no-reply@wallabag.org
|
||||||
|
|
||||||
rss_limit: 50
|
rss_limit: 50
|
||||||
|
|
Loading…
Reference in a new issue