Skip to content

Commit

Permalink
Use new domain
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Yuan <[email protected]>
  • Loading branch information
juntao committed Dec 26, 2024
1 parent 862aa2d commit 557241b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion activate.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

console.log("formData is:");
console.log(JSON.stringify(form_json));
fetch('https://pastor-insights-service.gaianet.ai/webhook/ahg0lRP83barIc5if7N4/activate/' + form_json['code'], {
fetch('https://flows.pastorinsights.ai/webhook/ahg0lRP83barIc5if7N4/activate/' + form_json['code'], {
method: 'GET',
credentials: "include",

Expand Down
6 changes: 3 additions & 3 deletions add_news.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

console.log("formData is:");
console.log(JSON.stringify(form_json));
fetch('https://pastor-insights-service.gaianet.ai/webhook/ahg0lRP83barIc5if7N4/generate_message', {
fetch('https://flows.pastorinsights.ai/webhook/ahg0lRP83barIc5if7N4/generate_message', {
method: 'POST',
credentials: "include",
headers: {
Expand Down Expand Up @@ -92,7 +92,7 @@
console.log("formData is:");
console.log(JSON.stringify(form_json));

fetch('https://pastor-insights-service.gaianet.ai/webhook/ahg0lRP83barIc5if7N4/save_message/' + form_json['passcode'], {
fetch('https://flows.pastorinsights.ai/webhook/ahg0lRP83barIc5if7N4/save_message/' + form_json['passcode'], {
method: 'POST',
credentials: "include",
headers: {
Expand All @@ -108,7 +108,7 @@
console.log(data);
if (data['status']) {
console.log("Sending message now");
fetch('https://pastor-insights-service.gaianet.ai/webhook/ahg0lRP83barIc5if7N4/send_message/' + form_json['passcode'] + '/' + form_json['profile'], {
fetch('https://flows.pastorinsights.ai/webhook/ahg0lRP83barIc5if7N4/send_message/' + form_json['passcode'] + '/' + form_json['profile'], {
method: 'GET',
credentials: "include"

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

console.log("formData is:");
console.log(JSON.stringify(form_json));
fetch('https://pastor-insights-service.gaianet.ai/webhook/ahg0lRP83barIc5if7N4/register', {
fetch('https://flows.pastorinsights.ai/webhook/ahg0lRP83barIc5if7N4/register', {
method: 'POST',
credentials: "include",
headers: {
Expand Down
2 changes: 1 addition & 1 deletion request_update.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

console.log("formData is:");
console.log(JSON.stringify(form_json));
fetch('https://pastor-insights-service.gaianet.ai/webhook/ahg0lRP83barIc5if7N4/request_update', {
fetch('https://flows.pastorinsights.ai/webhook/ahg0lRP83barIc5if7N4/request_update', {
method: 'POST',
credentials: "include",
headers: {
Expand Down
2 changes: 1 addition & 1 deletion update_profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

console.log("formData is:");
console.log(JSON.stringify(form_json));
fetch('https://pastor-insights-service.gaianet.ai/webhook/ahg0lRP83barIc5if7N4/update_profile', {
fetch('https://flows.pastorinsights.ai/webhook/ahg0lRP83barIc5if7N4/update_profile', {
method: 'POST',
credentials: "include",
headers: {
Expand Down

0 comments on commit 557241b

Please sign in to comment.