* Fixed user issues * feat: add personal_number column to customers for individual identification * feat: add personal_number field to makeCustomer function for enhanced customer identification * feat: add personal_number column with constraint check for customer identification
10 lines
438 B
TypeScript
10 lines
438 B
TypeScript
import { redirect } from 'next/navigation'
|
|
|
|
// Säkerhetskopia + Google Drive-molnsynkronisering ligger numera under
|
|
// /import (Importera/Exportera). Den här sidan finns kvar endast som en
|
|
// permanent omdirigering så att gamla bokmärken och cloud-backup-extensionens
|
|
// `settingsPanel.path` fortfarande tar användaren till rätt plats.
|
|
export default function BackupSettingsPage() {
|
|
redirect('/import?view=export#cloud-backup')
|
|
}
|