Changeset 9854393 for pages/+Layout.telefunc.ts
- Timestamp:
- 12/27/25 02:27:36 (7 months ago)
- Branches:
- main
- Children:
- ad311c3
- Parents:
- 82aa6ae
- File:
-
- 1 edited
-
pages/+Layout.telefunc.ts (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pages/+Layout.telefunc.ts
r82aa6ae r9854393 10 10 } 11 11 12 export async function onGetAllComponents({ componentType, limit, q }13 : { componentType?: string; limit?: number; q?: string }) {12 export async function onGetAllComponents({ componentType, limit, sort, q } 13 : { componentType?: string; limit?: number; sort?: string, q?: string }) { 14 14 const c = ctx(); 15 15 16 const components = await drizzleQueries.getAllComponents(c.db, limit, componentType, q);16 const components = await drizzleQueries.getAllComponents(c.db, limit, componentType, sort, q); 17 17 18 18 return components;
Note:
See TracChangeset
for help on using the changeset viewer.
