mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-29 18:56:36 +00:00
19 lines
606 B
TypeScript
19 lines
606 B
TypeScript
import { ACCESS_TOKEN_COOKIE_NAME } from '$lib/constants';
|
|
import UserService from '$lib/services/user-service';
|
|
import type { SearchPaginationSortRequest } from '$lib/types/pagination.type';
|
|
import type { PageServerLoad } from './$types';
|
|
|
|
export const load: PageServerLoad = async ({ cookies }) => {
|
|
const userService = new UserService(cookies.get(ACCESS_TOKEN_COOKIE_NAME));
|
|
|
|
const usersRequestOptions: SearchPaginationSortRequest = {
|
|
sort: {
|
|
column: 'firstName',
|
|
direction: 'asc'
|
|
}
|
|
};
|
|
|
|
const users = await userService.list(usersRequestOptions);
|
|
return { users, usersRequestOptions };
|
|
};
|