0
0
Fork 0

Update isTied endpoint to return data rather than nothing on success

This commit is contained in:
Oliver-Akins 2021-07-23 13:54:40 -06:00
parent f168eea621
commit f73790a570

View file

@ -43,6 +43,6 @@ export default {
return h.response(r.data).code(r.status);
};
return h.response().code(200);
return h.response({ result: `No Tie` }).code(200);
},
}