A social knowledge tool for researchers built on ATProto

ran lint fix

+1 -1
+1 -1
src/shared/infrastructure/http/models/BaseController.ts
··· 28 28 } 29 29 30 30 public ok<T>(res: express.Response, dto?: T) { 31 - if (!!dto) { 31 + if (dto) { 32 32 res.type('application/json'); 33 33 return res.status(200).json(dto); 34 34 } else {