patches v1.5.1 #99

Merged
jkeffects merged 6 commits from develop into main 2025-05-07 07:29:00 +00:00
Showing only changes of commit 9dd7686b67 - Show all commits

View file

@ -34,15 +34,15 @@ router.post("/verify", async (req, res) => {
await verifyMyTotp(req, res);
});
router.post("/changepw", async (req, res) => {
router.patch("/changepw", async (req, res) => {
await changeMyPassword(req, res);
});
router.post("/changeToTOTP", async (req, res) => {
router.patch("/changeToTOTP", async (req, res) => {
await changeToTOTP(req, res);
});
router.post("/changeToPW", async (req, res) => {
router.patch("/changeToPW", async (req, res) => {
await changeToPW(req, res);
});