mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 23:48:56 +01:00
Move API endpoints under /api/configure/phone/ to /api/phone/
Pull out /api/configure/phone API endpoints into /api/phone for more concise and sufficiently explanatory API path Refactor Flow 1. Rename /api/configure/phone -> /api/phone
This commit is contained in:
parent
1197266912
commit
3832ef0236
2 changed files with 4 additions and 4 deletions
|
@ -336,7 +336,7 @@ def configure_routes(app):
|
|||
if is_twilio_enabled():
|
||||
from khoj.routers.api_phone import api_phone
|
||||
|
||||
app.include_router(api_phone, prefix="/api/configure/phone")
|
||||
app.include_router(api_phone, prefix="/api/phone")
|
||||
logger.info("📞 Enabled Twilio")
|
||||
|
||||
|
||||
|
|
|
@ -890,7 +890,7 @@
|
|||
})
|
||||
|
||||
phonenumberRemoveButton.addEventListener("click", () => {
|
||||
fetch('/api/configure/phone', {
|
||||
fetch('/api/phone', {
|
||||
method: 'DELETE',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
|
@ -917,7 +917,7 @@
|
|||
}, 5000);
|
||||
} else {
|
||||
const mobileNumber = iti.getNumber();
|
||||
fetch('/api/configure/phone?phone_number=' + mobileNumber, {
|
||||
fetch('/api/phone?phone_number=' + mobileNumber, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
|
@ -970,7 +970,7 @@
|
|||
return;
|
||||
}
|
||||
|
||||
fetch('/api/configure/phone/verify?code=' + otp, {
|
||||
fetch('/api/phone/verify?code=' + otp, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
|
|
Loading…
Reference in a new issue