added cookie to config + fixed config set endpoint

This commit is contained in:
dswbx
2024-11-25 16:57:12 +01:00
parent 824ff40133
commit 16a6a3315d
14 changed files with 114 additions and 47 deletions

View File

@@ -78,6 +78,13 @@ export const migrations: Migration[] = [
up: async (config, { db }) => {
return config;
}
},
{
version: 7,
up: async (config, { db }) => {
// automatically adds auth.cookie options
return config;
}
}
];