EUS/controllers/HomeController.ts

14 lines
301 B
TypeScript
Raw Normal View History

2025-01-01 22:03:59 +00:00
import Controller from "./Controller";
export default class HomeController extends Controller {
2025-01-03 03:11:00 +00:00
public Index_Get_AllowAnonymous() {
2025-01-01 22:03:59 +00:00
return this.view();
}
2025-01-03 03:11:00 +00:00
public Upload_Post_AllowAnonymous() {
console.log(this.req.headers.authorization);
console.log(this.req.body);
return this.ok();
}
2025-01-01 22:03:59 +00:00
}