mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-06 13:22:12 +00: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:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user