- Updated user schema to include isAdmin field. - Enhanced authentication hooks to fetch and set user admin status. - Created ProfileButton component for user profile actions. - Implemented profile and password update functionality. - Added session management for user accounts. - Developed login and signup pages with form handling. - Introduced layout server for user session data. - Updated daily page to reflect character changes.
9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
import type { LayoutServerLoad } from './$types';
|
|
|
|
export const load: LayoutServerLoad = ({ locals }) => {
|
|
return {
|
|
user: locals.user || null,
|
|
session: locals.session || null
|
|
};
|
|
};
|