Merge pull request 'Fix version' (#19) from apple-reject/28-nov-25 into staging

Reviewed-on: http://wibugit.wibudev.com/wibu/hipmi/pulls/19
This commit is contained in:
2025-11-28 11:47:44 +08:00
3 changed files with 3 additions and 7 deletions

View File

@@ -2,6 +2,8 @@
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
## [1.5.18](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.5.17...v1.5.18) (2025-11-28)
## [1.5.17](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.5.16...v1.5.17) (2025-11-24)

View File

@@ -1,6 +1,6 @@
{
"name": "hipmi",
"version": "1.5.17",
"version": "1.5.18",
"private": true,
"prisma": {
"seed": "bun prisma/seed.ts"

View File

@@ -55,12 +55,6 @@ async function GET(request: Request) {
const takeData = 10;
const skipData = page * takeData - takeData;
// console.log("[BLOCKED ID]", id);
// console.log("[PAGE]", page);
// console.log("[TAKE DATA]", takeData);
// console.log("[SKIP DATA]", skipData);
// console.log("[SEARCH]", search);
try {
const data = await prisma.blockedUser.findMany({
take: page ? takeData : undefined,