move the database and mailer to own log sub dir, add all email change logic
This commit is contained in:
parent
ddd00e3f85
commit
a783a0e663
26 changed files with 808 additions and 225 deletions
|
@ -1,3 +1,5 @@
|
|||
import type { UserSession } from "#types/config";
|
||||
|
||||
type Query = Record<string, string>;
|
||||
type Params = Record<string, string>;
|
||||
|
||||
|
@ -5,6 +7,7 @@ interface ExtendedRequest extends Request {
|
|||
startPerf: number;
|
||||
query: Query;
|
||||
params: Params;
|
||||
session?: UserSession | null;
|
||||
}
|
||||
|
||||
export type { ExtendedRequest, Query, Params };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue