mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
21 lines
364 B
JavaScript
21 lines
364 B
JavaScript
import prisma from 'lib/prisma';
|
|
|
|
export async function getAccounts() {
|
|
return prisma.client.account.findMany({
|
|
orderBy: [
|
|
{ isAdmin: 'desc' },
|
|
{
|
|
username: 'asc',
|
|
},
|
|
],
|
|
select: {
|
|
id: true,
|
|
username: true,
|
|
isAdmin: true,
|
|
createdAt: true,
|
|
updatedAt: true,
|
|
accountUuid: true,
|
|
},
|
|
});
|
|
}
|