forked from OpenWF/SpaceNinjaServer
Just giving the client an 'ok' response. It seems that it does use updateQuest to manage the state itself mostly, just the server and webui are a bit confused about a quest with all stages completed still being active. Re #1323 Reviewed-on: OpenWF/SpaceNinjaServer#2461 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
import { RequestHandler } from "express";
|
|
|
|
export const resetQuestProgressController: RequestHandler = (_req, res) => {
|
|
res.send("1").end();
|
|
};
|