Files
ReadMeABook/src/app/admin/settings/tabs/AuthTab/index.ts
T
kikootwo 94dbaf073b Add backend unit test framework and modularize settings UI
Introduced a Vitest-based backend unit testing framework with supporting scripts, helpers, and GitHub Actions integration. Refactored the admin settings page to a modular architecture, splitting monolithic logic into feature-specific tabs and hooks for improved maintainability and testability. Updated documentation to reflect the new testing setup and settings architecture, and added new dependencies for testing utilities.
2026-01-28 11:41:59 -05:00

11 lines
348 B
TypeScript

/**
* Component: AuthTab - Export File
* Documentation: documentation/settings-pages.md
*/
export { AuthTab } from './AuthTab';
export { OIDCSection } from './OIDCSection';
export { RegistrationSection } from './RegistrationSection';
export { PendingUsersTable } from './PendingUsersTable';
export { useAuthSettings } from './useAuthSettings';