use common route for sensitive input

This commit is contained in:
yggverse 2024-10-17 08:20:23 +03:00
parent b8b5eee4fe
commit 0b1bdb43b5

View File

@ -275,7 +275,7 @@ impl Page {
match parts.get(1) { match parts.get(1) {
Some(code) => match code.as_str() { Some(code) => match code.as_str() {
// Input expected // Input expected
"10" => { "10" | "11" => {
match parts.get(3) { match parts.get(3) {
Some(placeholder) => { Some(placeholder) => {
// Format response // Format response
@ -297,10 +297,6 @@ impl Page {
None => todo!(), None => todo!(),
} }
}, },
// Sensitive input expected
"11" => {
todo!()
},
// Success // Success
"20" => { "20" => {
match parts.get(2) { match parts.get(2) {