mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
23 lines
424 B
JavaScript
23 lines
424 B
JavaScript
import { runQuery } from 'lib/queries';
|
|
import prisma from 'lib/db';
|
|
|
|
export async function getAccounts() {
|
|
return runQuery(
|
|
prisma.account.findMany({
|
|
orderBy: [
|
|
{ is_admin: 'desc' },
|
|
{
|
|
username: 'asc',
|
|
},
|
|
],
|
|
select: {
|
|
user_id: true,
|
|
username: true,
|
|
is_admin: true,
|
|
created_at: true,
|
|
updated_at: true,
|
|
},
|
|
}),
|
|
);
|
|
}
|