1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-28 03:51:23 +01:00

make web refresh tokens good for 30 days

This commit is contained in:
Kyle Spearrin 2018-07-23 19:50:26 -04:00
parent 545fb43dac
commit 5eff4c6a40

View File

@ -11,7 +11,7 @@ namespace Bit.Core.IdentityServer
return new List<Client> return new List<Client>
{ {
new ApiClient("mobile", 90, 1), new ApiClient("mobile", 90, 1),
new ApiClient("web", 1, 1), new ApiClient("web", 30, 1),
new ApiClient("browser", 30, 1), new ApiClient("browser", 30, 1),
new ApiClient("desktop", 30, 1), new ApiClient("desktop", 30, 1),
new ApiClient("cli", 30, 1), new ApiClient("cli", 30, 1),