extend token lifetime to 30 minutes (#5019)

zio/stable
Samuel Newman 2024-08-30 08:32:18 +01:00 committed by GitHub
parent 8cddce5f30
commit 05b73d4d1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,7 @@ export const useUploadVideoMutation = ({
{
aud: serviceAuthAud,
lxm: 'com.atproto.repo.uploadBlob',
exp: Date.now() + 1000 * 60 * 30, // 30 minutes
},
)

View File

@ -43,6 +43,7 @@ export const useUploadVideoMutation = ({
{
aud: serviceAuthAud,
lxm: 'com.atproto.repo.uploadBlob',
exp: Date.now() + 1000 * 60 * 30, // 30 minutes
},
)