tweaked route formatting

This commit is contained in:
2025-08-17 19:01:44 -04:00
parent fe12c820ee
commit 84207fd6d8
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ app.post('/application', (req, res) => {
res.send('Application received')
});
app.get('/me/application', (req, res) => {
app.get('/application/me', (req, res) => {
if (application) {
let data = {
"app": application,