mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 14:47:14 +01:00
Fixed change password issue. API refactoring. Closes #1592.
This commit is contained in:
parent
994cf950c8
commit
ac070d3ce9
24 changed files with 74 additions and 111 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { getWebsiteByShareId } from 'queries';
|
||||
import { getWebsite } from 'queries';
|
||||
import { ok, notFound, methodNotAllowed, createToken } from 'next-basics';
|
||||
import { secret } from 'lib/crypto';
|
||||
|
||||
|
|
@ -6,7 +6,7 @@ export default async (req, res) => {
|
|||
const { id } = req.query;
|
||||
|
||||
if (req.method === 'GET') {
|
||||
const website = await getWebsiteByShareId(id);
|
||||
const website = await getWebsite({ shareId: id });
|
||||
|
||||
if (website) {
|
||||
const { websiteUuid } = website;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue