mirror of
https://github.com/aljazceru/landscape-template.git
synced 2026-01-18 22:04:27 +01:00
21 lines
457 B
JavaScript
21 lines
457 B
JavaScript
|
|
const cookie = require('cookie')
|
|
|
|
exports.handler = async (event, context) => {
|
|
const myCookie = cookie.serialize('Authorization', '', {
|
|
secure: true,
|
|
httpOnly: true,
|
|
path: '/',
|
|
maxAge: -1,
|
|
})
|
|
return {
|
|
statusCode: 200,
|
|
body: JSON.stringify({
|
|
status: 'OK',
|
|
}),
|
|
'headers': {
|
|
'Set-Cookie': myCookie,
|
|
'Cache-Control': 'no-cache',
|
|
}
|
|
}
|
|
}; |