🐛 Fix: [dev] access token 유효기간 일주일로 임시 연장

This commit is contained in:
sm4640
2025-05-07 00:48:28 +09:00
parent 841f5b88c7
commit ca920077f4

View File

@@ -174,7 +174,7 @@ REST_FRAMEWORK = {
REST_USE_JWT = True
SIMPLE_JWT = {
'ACCESS_TOKEN_LIFETIME': timedelta(minutes=15),
'ACCESS_TOKEN_LIFETIME': timedelta(days=7), # minutes = 15
'REFRESH_TOKEN_LIFETIME': timedelta(days=7),
'ROTATE_REFRESH_TOKENS': True,
'BLACKLIST_AFTER_ROTATION': True,