chore: send requests to k8s
Brijesh Wawdhane ops@brijesh.dev
Wed, 25 Dec 2024 17:05:52 +0530
9 files changed,
15 insertions(+),
15 deletions(-)
jump to
M
src/app/(auth)/layout.js
→
src/app/(auth)/layout.js
@@ -15,7 +15,7 @@ const token = localStorage.getItem("token");
if (token) { // Verify token by making a request to /twirp/auth.AuthService/ValidateToken const response = await fetch( - "http://localhost:8080/twirp/auth.AuthService/ValidateToken", + `https://argus-core.brijesh.dev/twirp/auth.AuthService/ValidateToken`, { method: "POST", headers: {
M
src/app/actions/auth.js
→
src/app/actions/auth.js
@@ -3,7 +3,7 @@
export async function login(formData) { try { const response = await fetch( - "http://localhost:8080/twirp/auth.AuthService/Login", + `https://argus-core.brijesh.dev/twirp/auth.AuthService/Login`, { method: "POST", headers: {@@ -34,7 +34,7 @@
export async function register(formData) { try { const response = await fetch( - "http://localhost:8080/twirp/auth.AuthService/Register", + `https://argus-core.brijesh.dev/twirp/auth.AuthService/Register`, { method: "POST", headers: {
M
src/app/dashboard/applications/[id]/edit/page.js
→
src/app/dashboard/applications/[id]/edit/page.js
@@ -23,7 +23,7 @@
async function fetchApplication() { try { const response = await fetch( - "http://localhost:8080/twirp/applications.ApplicationsService/GetApplication", + `https://argus-core.brijesh.dev/twirp/applications.ApplicationsService/GetApplication`, { method: "POST", headers: {@@ -59,7 +59,7 @@ setError("");
try { const response = await fetch( - "http://localhost:8080/twirp/applications.ApplicationsService/UpdateApplication", + `https://argus-core.brijesh.dev/twirp/applications.ApplicationsService/UpdateApplication`, { method: "POST", headers: {@@ -99,7 +99,7 @@ }
try { const response = await fetch( - "http://localhost:8080/twirp/applications.ApplicationsService/RegenerateKey", + `https://argus-core.brijesh.dev/twirp/applications.ApplicationsService/RegenerateKey`, { method: "POST", headers: {
M
src/app/dashboard/applications/[id]/page.js
→
src/app/dashboard/applications/[id]/page.js
@@ -19,7 +19,7 @@
async function fetchApplication() { try { const response = await fetch( - "http://localhost:8080/twirp/applications.ApplicationsService/GetApplication", + `https://argus-core.brijesh.dev/twirp/applications.ApplicationsService/GetApplication`, { method: "POST", headers: {
M
src/app/dashboard/applications/new/page.js
→
src/app/dashboard/applications/new/page.js
@@ -20,7 +20,7 @@ setError("");
try { const response = await fetch( - "http://localhost:8080/twirp/applications.ApplicationsService/CreateApplication", + `https://argus-core.brijesh.dev/twirp/applications.ApplicationsService/CreateApplication`, { method: "POST", headers: {
M
src/app/dashboard/applications/page.js
→
src/app/dashboard/applications/page.js
@@ -4,7 +4,7 @@ import { useState, useEffect } from "react";
import { useRouter } from "next/navigation"; import Link from "next/link"; import Button from "@/components/shared/Button"; -import { Terminal, MoreVertical } from "lucide-react"; +import { MoreVertical } from "lucide-react"; import { DropdownMenu, DropdownMenuContent,@@ -26,7 +26,7 @@
async function fetchApplications() { try { const response = await fetch( - "http://localhost:8080/twirp/applications.ApplicationsService/ListApplications", + `https://argus-core.brijesh.dev/twirp/applications.ApplicationsService/ListApplications`, { method: "POST", headers: {@@ -64,7 +64,7 @@ setDeletingApps((prev) => new Set([...prev, appId]));
try { const response = await fetch( - `http://localhost:8080/twirp/applications.ApplicationsService/DeleteApplication`, + `https://argus-core.brijesh.dev/twirp/applications.ApplicationsService/DeleteApplication`, { method: "POST", headers: {
M
src/app/dashboard/logs/[application_id]/page.js
→
src/app/dashboard/logs/[application_id]/page.js
@@ -48,7 +48,7 @@
setIsLoading(true); try { const response = await fetch( - "http://localhost:8080/twirp/logs.LogsService/GetLogs", + `https://argus-core.brijesh.dev/twirp/logs.LogsService/GetLogs`, { method: "POST", headers: { "Content-Type": "application/json" },@@ -90,7 +90,7 @@
setIsGeneratingDummy(true); try { const response = await fetch( - "http://localhost:8080/twirp/logs.LogsService/GenerateDummyLogs", + `https://argus-core.brijesh.dev/twirp/logs.LogsService/GenerateDummyLogs`, { method: "POST", headers: { "Content-Type": "application/json" },
M
src/app/dashboard/logs/page.js
→
src/app/dashboard/logs/page.js
@@ -20,7 +20,7 @@ async function fetchApplications() {
setIsLoading(true); try { const response = await fetch( - "http://localhost:8080/twirp/applications.ApplicationsService/ListApplications", + `https://argus-core.brijesh.dev/twirp/applications.ApplicationsService/ListApplications`, { method: "POST", headers: { "Content-Type": "application/json" },
M
src/context/AuthContext.js
→
src/context/AuthContext.js
@@ -14,7 +14,7 @@ // Function to fetch user data using the token
const fetchUserData = async (token) => { try { const response = await fetch( - "http://localhost:8080/twirp/auth.AuthService/ValidateToken", + `https://argus-core.brijesh.dev/twirp/auth.AuthService/ValidateToken`, { method: "POST", headers: {