mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-26 20:39:07 +01:00
aceb904398
* Fixed issue with realtime page rendering. * fix auth, add pg extension (#1596) * Fixed change password issue. API refactoring. Closes #1592. * Fixed account lookup. * Fixed issue with accessing user dashboards. Closes #1590 * fix sort on dashboard (#1600) Co-authored-by: Brian Cao <brian@umami.is>
24 lines
566 B
JavaScript
24 lines
566 B
JavaScript
import { getWebsite } from 'queries';
|
|
import { ok, notFound, methodNotAllowed, createToken } from 'next-basics';
|
|
import { secret } from 'lib/crypto';
|
|
|
|
export default async (req, res) => {
|
|
const { id } = req.query;
|
|
|
|
if (req.method === 'GET') {
|
|
const website = await getWebsite({ shareId: id });
|
|
|
|
if (website) {
|
|
const { websiteUuid } = website;
|
|
const data = { id: websiteUuid };
|
|
const token = createToken(data, secret());
|
|
|
|
return ok(res, { ...data, token });
|
|
}
|
|
|
|
return notFound(res);
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|