fixing all logs showing when user is unauthenticated #127

Merged
noahspannbauer merged 1 commits from 126-all-logs-shown-when-unauthenticated into main 2026-04-07 21:44:22 -04:00
4 changed files with 4 additions and 5 deletions

View File

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

View File

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

View File

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

View File

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