feature/T2026-05-031 crear usuarios
This commit is contained in:
11
src/App.jsx
11
src/App.jsx
@@ -14,6 +14,7 @@ import LandingAnimated from './pages/LandingAnimated';
|
||||
import Expedientes from './pages/Expedientes';
|
||||
import Organization from './pages/Organization';
|
||||
import Users from './pages/Users';
|
||||
import UserForm from './pages/UserForm';
|
||||
import Reports from './pages/Reports';
|
||||
import Settings from './pages/Settings';
|
||||
import Importers from './pages/Importers';
|
||||
@@ -76,6 +77,16 @@ function AppContent() {
|
||||
<Users />
|
||||
</RequireAuth>
|
||||
} />
|
||||
<Route path="/users/new" element={
|
||||
<RequireAuth>
|
||||
<UserForm />
|
||||
</RequireAuth>
|
||||
} />
|
||||
<Route path="/users/:id/edit" element={
|
||||
<RequireAuth>
|
||||
<UserForm />
|
||||
</RequireAuth>
|
||||
} />
|
||||
<Route path="/reports" element={
|
||||
<RequireAuth>
|
||||
<Reports />
|
||||
|
||||
Reference in New Issue
Block a user