core: reduce default nonce time to 30 minutes
This commit is contained in:
parent
99bab03cce
commit
e989c61793
|
@ -32,7 +32,7 @@ NATIVE_ENVIRONMENT = NativeEnvironment()
|
||||||
|
|
||||||
def default_nonce_duration():
|
def default_nonce_duration():
|
||||||
"""Default duration a Nonce is valid"""
|
"""Default duration a Nonce is valid"""
|
||||||
return now() + timedelta(hours=4)
|
return now() + timedelta(minutes=30)
|
||||||
|
|
||||||
|
|
||||||
class Group(ExportModelOperationsMixin("group"), UUIDModel):
|
class Group(ExportModelOperationsMixin("group"), UUIDModel):
|
||||||
|
|
Reference in New Issue