sveltekit-admin doesn’t ship its own auth system — it gives you a single
hook, authCheck, to gate access with whatever auth you already have.
authCheck
authCheck receives the SvelteKit RequestEvent and can be sync or async.
Return true to allow the request through to the admin, false to deny it.
If authCheck is omitted, the admin panel is open to anyone who can reach basePath — always set one before deploying anywhere reachable by
untrusted users.
Combining with an existing auth handler
If you already have a handle function doing session/auth work (for
example, populating event.locals.session), use SvelteKit’s sequence so
your auth handler runs first and the admin handler can read what it set:
The order matters: authHandle must run before adminHandle so that event.locals.session is populated by the time authCheck reads it.
Recording who changed what
authCheck only gates access. To record which administrator created,
updated, or deleted a row, pass audit — it receives
the same event (so the same locals) after every successful write.