mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
16 lines
330 B
JavaScript
16 lines
330 B
JavaScript
import { serialize } from 'cookie';
|
|
import { AUTH_COOKIE_NAME } from 'lib/constants';
|
|
import { ok } from 'lib/response';
|
|
|
|
export default async (req, res) => {
|
|
const cookie = serialize(AUTH_COOKIE_NAME, '', {
|
|
path: '/',
|
|
httpOnly: true,
|
|
maxAge: 0,
|
|
});
|
|
|
|
res.setHeader('Set-Cookie', [cookie]);
|
|
|
|
return ok(res);
|
|
};
|