14 lines
538 B
JavaScript
14 lines
538 B
JavaScript
export function getAdminNavItems() {
|
|
return [
|
|
{ to: '/admin', label: 'Übersicht', end: true },
|
|
{ to: '/admin/users', label: 'Nutzer' },
|
|
{ to: '/admin/prompts', label: 'Prompts' },
|
|
{ to: '/admin/generation', label: 'Generierungsrichtlinien' },
|
|
{ to: '/admin/placeholders', label: 'Platzhalter' },
|
|
{ to: '/admin/features', label: 'Kontingente' },
|
|
{ to: '/admin/providers', label: 'Schnittstellen' },
|
|
{ to: '/admin/identities', label: 'Identitäten' },
|
|
{ to: '/admin/dialogue', label: 'Dialog' }
|
|
]
|
|
}
|