mirror of
https://github.com/ershisan99/coolify.git
synced 2026-01-28 21:02:05 +00:00
16 lines
280 B
TypeScript
16 lines
280 B
TypeScript
export async function del({ locals }) {
|
|
locals.session.destroy();
|
|
|
|
return {
|
|
headers: {
|
|
'set-cookie': [
|
|
'teamId=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT',
|
|
'gitlabToken=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT'
|
|
]
|
|
},
|
|
body: {
|
|
ok: true
|
|
}
|
|
};
|
|
}
|