Merge branch 'feature/remote-management' into legacy

# Conflicts:
#	apps/mobile_app/lib/save_family_app.dart
#	packages/sf_localizations/assets/l10n/de.json
#	packages/sf_localizations/assets/l10n/en.json
#	packages/sf_localizations/assets/l10n/es.json
#	packages/sf_localizations/assets/l10n/fr.json
#	packages/sf_localizations/assets/l10n/it.json
#	packages/sf_localizations/assets/l10n/pt.json
#	packages/sf_localizations/lib/src/generated/i18n.dart
This commit is contained in:
2026-03-16 12:54:23 +01:00
366 changed files with 29902 additions and 2351 deletions

View File

@@ -51,10 +51,18 @@ class AppRoutes {
static const deviceManagement = '$legacyDashboard/device_management';
static const legacyLocation = '$legacyDashboard/location';
static const scheduledActivities = '$deviceManagement/scheduled_activities';
static const contacts = '$deviceManagement/contacts';
static const editContact = '$contacts/edit/:contactId';
static String editContactPath(String contactId) =>
'$contacts/edit/$contactId';
static const health = '$deviceManagement/health';
static const remoteConnection = '$deviceManagement/remote_connection';
static const locateDevice = '$deviceManagement/locate_device';
static const rewards = '$deviceManagement/rewards';
static const activityMeter = '$deviceManagement/activity_meter';
static const appsUse = '$deviceManagement/apps_use';
static const legacyLogin = '$legacy/login';
static const legacySignup = '$legacy/signup';
@@ -70,4 +78,21 @@ class AppRoutes {
static const linkedDevices = '$accountSettings/linked_devices';
static const appUsers = '$accountSettings/app_users';
static const deleteAccount = '$accountSettings/delete_account';
static const settings = '$controlPanel/settings';
static const alarm = '$settings/alarm';
static const appStore = '$settings/app_store';
static const battery = '$settings/battery';
static const blockPhone = '$settings/block_phone';
static const disableFunctions = '$settings/disable_functions';
static const language = '$settings/language';
static const legacyNotifications = '$settings/legacy_notifications';
static const remoteManagement = '$settings/remote_management';
static const remoteOnOff = '$settings/remote_on_off';
static const smsAlert = '$settings/sms_alert';
static const sosContacts = '$settings/sos_agenda';
static const sound = '$settings/sound';
static const syncClock = '$settings/sync_clock';
static const timezone = '$settings/timezone';
static const wifiSettings = '$settings/wifi_settings';
}