v0.49.1 including Codemods (#28)

This commit is contained in:
David Price
2022-03-11 09:30:10 -08:00
committed by GitHub
parent 19ba5fa253
commit f560b7402c
7 changed files with 1000 additions and 917 deletions

BIN
api/db/dev.db-journal Normal file

Binary file not shown.

View File

@@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"dependencies": {
"@redwoodjs/api": "0.45.0",
"@redwoodjs/graphql-server": "0.45.0"
"@redwoodjs/api": "0.49.1",
"@redwoodjs/graphql-server": "0.49.1"
}
}

View File

@@ -143,6 +143,14 @@ export const handler = async (event, context) => {
login: loginOptions,
resetPassword: resetPasswordOptions,
signup: signupOptions,
cookie: {
HttpOnly: true,
Path: '/',
SameSite: 'Strict',
Secure: true,
// Domain: 'example.com',
},
})
return await authHandler.invoke()