fixing all logs showing when user is unauthenticated (#127)

This commit was merged in pull request #127.
This commit is contained in:
2026-04-07 20:44:21 -05:00
committed by GitHub
parent d8513e6dd0
commit fd514e4c8b
4 changed files with 4 additions and 5 deletions

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
}
}
})
);