Files
lunasea/lib/core/module_flags.dart
Jagandeep Brar 6b60fda2fa [TestFlight] v4.0.0+400001 (#240)
NEW
- [Tautulli] View Activity
- [Tautulli] View activity details
- [Tautulli] View list of users
- [Tautulli] Ability to backup configuration & database
- [Tautulli] Ability to delete cache & image cache
- [Drawer] Ability to set the initial expanded state of categories (automation, clients, & monitoring)

TWEAKS
- [UI/Loader] New loading indicator
- [Home/Calendar] Separate calendar view type into its own preference
- [Home/Calendar] Show no modules enabled message when there are no automation modules enabled, not just no modules overall

FIXES
- [Profiles] Safeguarded fetching of enabled module
2020-08-24 04:06:00 -05:00

19 lines
474 B
Dart

class ModuleFlags {
ModuleFlags._();
//General
static const SEARCH = true;
static const WAKE_ON_LAN = true;
//Automation
static const AUTOMATION = true;
static const LIDARR = true;
static const RADARR = true;
static const SONARR = true;
//Clients
static const CLIENTS = true;
static const SABNZBD = true;
static const NZBGET = true;
//Monitoring
static const MONITORING = true;
static const TAUTULLI = true;
}