updating api log interceptor #128

Merged
noahspannbauer merged 3 commits from 126-all-logs-shown-when-unauthenticated into main 2026-04-16 09:31:28 -04:00
4 changed files with 4 additions and 5 deletions
Showing only changes of commit fa7a39e48a - Show all commits

View File

@@ -1,6 +1,6 @@
{
"name": "api",
"version": "2.1.2",
"version": "2.1.3",
"description": "",
"author": "",
"private": true,

View File

@@ -62,7 +62,7 @@ export class LogInterceptor implements NestInterceptor {
const logs = publicData.slice(0, 5)
return {
entities: publicData,
entities: logs,
total: data.total,
hasNextPage: false
};
@@ -71,7 +71,6 @@ export class LogInterceptor implements NestInterceptor {
return publicData
}
}
})
);

View File

@@ -1,7 +1,7 @@
{
"name": "client",
"private": true,
"version": "2.1.2",
"version": "2.1.3",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -1,6 +1,6 @@
{
"name": "@noahspan/flying",
"version": "2.1.2",
"version": "2.1.3",
"scripts": {
"start": "node api/dist/main",
"format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",