Adrià Vilanova Martínez | f4cbb6b | 2024-05-26 01:19:01 +0200 | [diff] [blame] | 1 | import Feature from '../../common/architecture/features/Feature'; |
| 2 | import { ConcreteScript } from '../../common/architecture/scripts/Script'; |
| 3 | import { OptionCodename } from '../../common/options/optionsPrototype'; |
| 4 | import RemoveUserAbuseEventsFromDataStartupScript from './scripts/removeUserAbuseEventsFromDataStartup.script'; |
| 5 | |
| 6 | // This feature also has an associated response modifier. |
Adrià Vilanova Martínez | 069287e | 2024-05-31 19:42:58 +0200 | [diff] [blame] | 7 | |
| 8 | /** |
| 9 | * @deprecated This feature has been deprecated. Its code will soon be removed |
| 10 | * once we're sure the feature won't come back. |
| 11 | */ |
Adrià Vilanova Martínez | f4cbb6b | 2024-05-26 01:19:01 +0200 | [diff] [blame] | 12 | export default class FixCCSlownessFeature extends Feature { |
| 13 | public readonly scripts: ConcreteScript[] = [ |
| 14 | RemoveUserAbuseEventsFromDataStartupScript, |
| 15 | ]; |
| 16 | |
| 17 | readonly codename = 'fixCCSlowness'; |
| 18 | readonly relatedOptions: OptionCodename[] = ['fixpekb269560789']; |
| 19 | } |