diff options
author | 2019-08-01 23:12:46 +0530 | |
---|---|---|
committer | 2019-08-02 00:42:46 +0700 | |
commit | f36d4f10c725b4511e0d28d5c1fec2cf1b2a22b6 (patch) | |
tree | fdfa7f5c02cfe77f3c02bcc744b340ae3ebd28a5 /source/options-storage.ts | |
parent | e03473b5f08333d00f052578361b78b54d3eab7c (diff) | |
download | refined-github-f36d4f10c725b4511e0d28d5c1fec2cf1b2a22b6.tar.gz refined-github-f36d4f10c725b4511e0d28d5c1fec2cf1b2a22b6.tar.zst refined-github-f36d4f10c725b4511e0d28d5c1fec2cf1b2a22b6.zip |
Add `minimize-user-comments` feature (#2146)
Co-Authored-By: Federico Brigante <github@bfred.it>
Diffstat (limited to 'source/options-storage.ts')
-rw-r--r-- | source/options-storage.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/options-storage.ts b/source/options-storage.ts index 7cab0b01..0fc0722f 100644 --- a/source/options-storage.ts +++ b/source/options-storage.ts @@ -4,6 +4,7 @@ export interface RGHOptions { customCSS: string; personalToken: string; logging: boolean; + minimizedUsers: string; [featureName: string]: string | boolean; } @@ -27,6 +28,7 @@ export default new OptionsSync({ customCSS: '', personalToken: '', logging: false, + minimizedUsers: '', ...featureOptions } as RGHOptions, migrations: [ |