extend token lifetime to 30 minutes (#5019)
parent
8cddce5f30
commit
05b73d4d1e
|
@ -44,6 +44,7 @@ export const useUploadVideoMutation = ({
|
|||
{
|
||||
aud: serviceAuthAud,
|
||||
lxm: 'com.atproto.repo.uploadBlob',
|
||||
exp: Date.now() + 1000 * 60 * 30, // 30 minutes
|
||||
},
|
||||
)
|
||||
|
||||
|
|
|
@ -43,6 +43,7 @@ export const useUploadVideoMutation = ({
|
|||
{
|
||||
aud: serviceAuthAud,
|
||||
lxm: 'com.atproto.repo.uploadBlob',
|
||||
exp: Date.now() + 1000 * 60 * 30, // 30 minutes
|
||||
},
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue