Put user last accessed updating behind a feature flag

This commit is contained in:
Joseph Schorr 2019-01-02 13:46:28 -05:00
parent a6b5b4d6e3
commit 4ba4d9141b
5 changed files with 22 additions and 4 deletions

View file

@ -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',