|
|
|
@ -117,6 +117,7 @@ class ConfigSchema(object):
|
|
|
|
|
'hide-comments': self.hide_comments,
|
|
|
|
|
'thread-changes': bool,
|
|
|
|
|
'display-times-in-utc': bool,
|
|
|
|
|
'handle-mouse': bool,
|
|
|
|
|
'change-list-options': self.change_list_options,
|
|
|
|
|
'expire-age': str,
|
|
|
|
|
})
|
|
|
|
@ -226,6 +227,7 @@ class Config(object):
|
|
|
|
|
|
|
|
|
|
self.thread_changes = self.config.get('thread-changes', True)
|
|
|
|
|
self.utc = self.config.get('display-times-in-utc', False)
|
|
|
|
|
self.handle_mouse = self.config.get('handle-mouse', True)
|
|
|
|
|
|
|
|
|
|
change_list_options = self.config.get('change-list-options', {})
|
|
|
|
|
self.change_list_options = {
|
|
|
|
|