File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,8 @@ pub async fn router(
5454 . route ( "/{id}" , get ( get_verification_handler) )
5555 . route ( "/{id}/await" , get ( await_verification_handler) )
5656 . route ( "/info" , get ( get_info_handler) )
57+ // /price kept for backwards compatibility. Remove after removed from Franky.
58+ . route ( "/price" , get ( get_info_handler) )
5759 . with_state ( state) )
5860}
5961
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ impl SmsVerificationService {
4848 self . limit_whitelist = whitelist;
4949 }
5050
51- /// Check if a phone number has reached its limits for new verificaitons
51+ /// Check if a phone number has reached its limits for new verifications
5252 pub async fn check_verification_limit (
5353 & mut self ,
5454 executor : & mut UnifiedExecutor < ' _ > ,
You can’t perform that action at this time.
0 commit comments