mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 10:46:44 -05:00
product with links
This commit is contained in:
@@ -24,19 +24,20 @@ export async function getLowerBuildKits(page = 1) {
|
||||
.offset(offset);
|
||||
}
|
||||
|
||||
export async function getAKBarreledReceivers(page = 1) {
|
||||
const limit = 20;
|
||||
const offset = (page - 1) * limit;
|
||||
// DISABLING FOR NOW. NO NEED FOR AK. FOCUS ON AR15
|
||||
// export async function getAKBarreledReceivers(page = 1) {
|
||||
// const limit = 20;
|
||||
// const offset = (page - 1) * limit;
|
||||
|
||||
return await db.select()
|
||||
.from(psa)
|
||||
.limit(limit)
|
||||
.where(eq(psa.fineline, "AK Barreled Receivers"))
|
||||
.offset(offset);
|
||||
}
|
||||
// return await db.select()
|
||||
// .from(psa)
|
||||
// .limit(limit)
|
||||
// .where(eq(psa.fineline, "AK Barreled Receivers"))
|
||||
// .offset(offset);
|
||||
// }
|
||||
|
||||
export async function getARCompleteLowers(page = 1) {
|
||||
const limit = 20;
|
||||
const limit = 40;
|
||||
const offset = (page - 1) * limit;
|
||||
|
||||
return await db.select()
|
||||
|
||||
Reference in New Issue
Block a user