Put user last accessed updating behind a feature flag
This commit is contained in:
parent
a6b5b4d6e3
commit
4ba4d9141b
5 changed files with 22 additions and 4 deletions
|
@ -784,6 +784,13 @@ CONFIG_SCHEMA = {
|
|||
'pattern': '^[0-9]+(w|m|d|h|s)$',
|
||||
},
|
||||
|
||||
# Feature Flag: User last accessed.
|
||||
'FEATURE_USER_LAST_ACCESSED': {
|
||||
'type': 'boolean',
|
||||
'description': 'Whether to record the last time a user was accessed. Defaults to True',
|
||||
'x-example': True,
|
||||
},
|
||||
|
||||
# Feature Flag: Permanent Sessions.
|
||||
'FEATURE_PERMANENT_SESSIONS': {
|
||||
'type': 'boolean',
|
||||
|
|
Reference in a new issue