Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
common
/
resources
/
client
/
admin
/
settings
/
Editing: settings-nav-config.ts
import {AppSettingsNavConfig} from '@app/admin/settings/app-settings-nav-config'; import {message} from '../../i18n/message'; import {MessageDescriptor} from '../../i18n/message-descriptor'; import {To} from 'react-router-dom'; export interface SettingsNavItem { label: MessageDescriptor; to: To; } export const SettingsNavConfig: SettingsNavItem[] = [ {label: message('General'), to: 'general'}, ...AppSettingsNavConfig, { label: message('Subscriptions'), to: 'subscriptions', }, {label: message('Localization'), to: 'localization'}, { label: message('Authentication'), to: 'authentication', }, {label: message('Uploading'), to: 'uploading'}, {label: message('Mail'), to: 'mail'}, {label: message('Cache'), to: 'cache'}, {label: message('Analytics'), to: 'analytics'}, {label: message('Logging'), to: 'logging'}, {label: message('Queue'), to: 'queue'}, {label: message('Recaptcha'), to: 'recaptcha'}, {label: message('GDPR'), to: 'gdpr'}, { label: message('Menus'), to: '/admin/appearance/menus', }, { label: message('Seo'), to: '/admin/appearance/seo-settings', }, { label: message('Themes'), to: '/admin/appearance/themes', }, ];
Save
Cancel