690319:2254 Update Backend & Frontend dep. #02
Build and Deploy / deploy (push) Failing after 11m29s
Build and Deploy / deploy (push) Failing after 11m29s
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
'use client';
|
||||
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default function AuditLogsPage() {
|
||||
// Redirect to the correct audit-logs location
|
||||
redirect('/admin/monitoring/audit-logs');
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
'use client';
|
||||
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default function NumberingEditPage() {
|
||||
// Redirect to the correct numbering edit location
|
||||
redirect('/admin/doc-control/numbering/[id]/edit');
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
'use client';
|
||||
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default function NumberingNewPage() {
|
||||
// Redirect to the correct numbering new location
|
||||
redirect('/admin/doc-control/numbering/new');
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
'use client';
|
||||
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default function NumberingPage() {
|
||||
// Redirect to the correct numbering location
|
||||
redirect('/admin/doc-control/numbering');
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
'use client';
|
||||
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default function OrganizationsPage() {
|
||||
// Redirect to the correct organizations location
|
||||
redirect('/admin/access-control/organizations');
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
'use client';
|
||||
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default function UsersPage() {
|
||||
// Redirect to the correct users location
|
||||
redirect('/admin/access-control/users');
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
'use client';
|
||||
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default function WorkflowEditPage() {
|
||||
// Redirect to the correct workflows edit location
|
||||
redirect('/admin/doc-control/workflows/[id]/edit');
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
'use client';
|
||||
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default function WorkflowNewPage() {
|
||||
// Redirect to the correct workflows new location
|
||||
redirect('/admin/doc-control/workflows/new');
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
'use client';
|
||||
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default function WorkflowsPage() {
|
||||
// Redirect to the correct workflows location
|
||||
redirect('/admin/doc-control/workflows');
|
||||
}
|
||||
Reference in New Issue
Block a user