a08b103271
Merges origin/main (v0.156.0) into the classification feature branch, properly resolving all 23 merge conflicts: - Auto-generated files (BUILD_DATE, VERSION, etc.): accept main's version - Non-classification files (SharePoint, QR auth, session mgmt, mobile): accept main's version - Classification files (api/__init__.py, models.py, migrations/env.py, conftest.py): keep classification additions alongside main's content Previously the branch was incorrectly removing files from main (SharePoint integration, QR scanner, session management). This merge properly preserves all main branch content while maintaining the classification feature additions. Migration chain validated: 038_add_classification_rules chains from 037_add_user_sessions_and_qr_challenges. Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
19 lines
445 B
TypeScript
19 lines
445 B
TypeScript
/**
|
|
* Layout for the unauthenticated route group: Welcome → Login.
|
|
*
|
|
* Uses a headerless native stack so the screens animate naturally.
|
|
*/
|
|
|
|
import { Stack } from "expo-router";
|
|
import React from "react";
|
|
|
|
export default function AuthLayout() {
|
|
return (
|
|
<Stack screenOptions={{ headerShown: false }}>
|
|
<Stack.Screen name="index" />
|
|
<Stack.Screen name="login" />
|
|
<Stack.Screen name="qr-scanner" />
|
|
</Stack>
|
|
);
|
|
}
|