remove debug prints

This commit is contained in:
pietru 2024-06-24 23:29:24 +02:00
parent 5651b8eeb5
commit 0c740d44a0
6 changed files with 1 additions and 4 deletions

Binary file not shown.

View file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -5,7 +5,6 @@ routerAdd("post", "/file", (c) => {
const collection_name = "files" const collection_name = "files"
const data = $apis.requestInfo(c).data const data = $apis.requestInfo(c).data
console.log(JSON.stringify(data));
if (data["filename"]==null){ if (data["filename"]==null){
return c.redirect(307, "/error"); return c.redirect(307, "/error");
} }
@ -29,7 +28,7 @@ routerAdd("post", "/file", (c) => {
.limit(1) .limit(1)
.one(file_record) .one(file_record)
console.log(JSON.stringify(file_record)); //console.log(JSON.stringify(file_record));
if (file_record){ if (file_record){
tittle=file_record.get("tittle") tittle=file_record.get("tittle")
@ -49,8 +48,6 @@ routerAdd("post", "/file", (c) => {
"link":`/api/files/${collection_name}/${recID}/${e}` "link":`/api/files/${collection_name}/${recID}/${e}`
}) })
}); });
console.log(JSON.stringify(file_record.get("data")))
console.log(JSON.stringify(links))
const html = $template.loadFiles( const html = $template.loadFiles(
`${__hooks}/views/base/layout.html`, `${__hooks}/views/base/layout.html`,