mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
* 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>
16 lines
347 B
JavaScript
16 lines
347 B
JavaScript
import prisma from 'lib/prisma';
|
|
import redis from 'lib/redis';
|
|
|
|
export async function getWebsite(where) {
|
|
return prisma.client.website
|
|
.findUnique({
|
|
where,
|
|
})
|
|
.then(async data => {
|
|
if (redis.enabled && data) {
|
|
await redis.client.set(`website:${data.websiteUuid}`, data.id);
|
|
}
|
|
|
|
return data;
|
|
});
|
|
}
|