mirror of
https://github.com/umami-software/umami.git
synced 2026-02-16 10:35:35 +01:00
Update security for dashboard and details pages.
This commit is contained in:
parent
ecd2593063
commit
bff8806b61
7 changed files with 40 additions and 40 deletions
|
|
@ -5,15 +5,15 @@ import { ok, methodNotAllowed, unauthorized } from 'lib/response';
|
|||
export default async (req, res) => {
|
||||
await useAuth(req, res);
|
||||
|
||||
const { user_id, is_admin } = req.auth;
|
||||
const { userId } = req.query;
|
||||
const { user_id: current_user_id, is_admin } = req.auth;
|
||||
const { user_id } = req.query;
|
||||
|
||||
if (req.method === 'GET') {
|
||||
if (userId && !is_admin) {
|
||||
if (user_id && !is_admin) {
|
||||
return unauthorized(res);
|
||||
}
|
||||
|
||||
const websites = await getUserWebsites(+userId || user_id);
|
||||
const websites = await getUserWebsites(+user_id || current_user_id);
|
||||
|
||||
return ok(res, websites);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue