tangled
alpha
login
or
join now
cosmik.network
/
semble
43
fork
atom
A social knowledge tool for researchers built on ATProto
43
fork
atom
overview
issues
13
pulls
pipelines
ran lint fix
Wesley Finck
8 months ago
65669c72
2ab14cba
+1
-1
1 changed file
expand all
collapse all
unified
split
src
shared
infrastructure
http
models
BaseController.ts
+1
-1
src/shared/infrastructure/http/models/BaseController.ts
···
28
28
}
29
29
30
30
public ok<T>(res: express.Response, dto?: T) {
31
31
-
if (!!dto) {
31
31
+
if (dto) {
32
32
res.type('application/json');
33
33
return res.status(200).json(dto);
34
34
} else {