BREAKING CHANGE(devtools): Switch /reloadcheck endpoint from GET to POST in DevToolsController

This commit is contained in:
2025-12-02 21:10:25 +00:00
parent 424b742f84
commit fc6829f607
3 changed files with 9 additions and 2 deletions

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@api.global/typedserver',
version: '4.1.1',
version: '5.0.0',
description: 'A TypeScript-based project for easy serving of static files with support for live reloading, compression, and typed requests.'
}

View File

@@ -30,7 +30,7 @@ export class DevToolsController {
});
}
@plugins.smartserve.Get('/reloadcheck')
@plugins.smartserve.Post('/reloadcheck')
async reloadCheck(ctx: plugins.smartserve.IRequestContext): Promise<Response> {
console.log('got request for reloadcheck');