tweaked route formatting
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -23,7 +23,7 @@ type ApplicationFull = Partial<{
|
||||
const addr = "localhost:3000"
|
||||
|
||||
export async function loadApplication(): Promise<ApplicationFull | null> {
|
||||
const res = await fetch(`http://${addr}/me/application`)
|
||||
const res = await fetch(`http://${addr}/application/me`)
|
||||
if (res.status === 204) return null
|
||||
if (!res.ok) throw new Error('Failed to load application')
|
||||
const json = await res.json()
|
||||
|
||||
Reference in New Issue
Block a user