edit endpoint
This commit is contained in:
@@ -12,7 +12,7 @@ export async function logout() {
|
||||
const token = await getSessionData('token');
|
||||
|
||||
try {
|
||||
await fetch(`${API_BASE_URL}v1/api/auth/logout`, {
|
||||
await fetch(`${API_BASE_URL}/v1/api/auth/logout`, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
@@ -43,7 +43,7 @@ export async function authorization(
|
||||
|
||||
try {
|
||||
const { email, password } = validatedFields.data;
|
||||
const response = await fetch(`${API_BASE_URL}v1/api/auth/login`, {
|
||||
const response = await fetch(`${API_BASE_URL}/v1/api/auth/login`, {
|
||||
method: 'POST',
|
||||
body: JSON.stringify({
|
||||
email: email,
|
||||
@@ -100,7 +100,7 @@ export async function registration(
|
||||
|
||||
try {
|
||||
const { full_name, email, password } = validatedFields.data;
|
||||
const response = await fetch(`${API_BASE_URL}v1/api/auth/register`, {
|
||||
const response = await fetch(`${API_BASE_URL}/v1/api/auth/register`, {
|
||||
method: 'POST',
|
||||
body: JSON.stringify({ fullName: full_name, email, password }),
|
||||
headers: {
|
||||
|
||||
@@ -126,4 +126,38 @@
|
||||
color: #111827;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
th {
|
||||
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
||||
color: white;
|
||||
padding: 15px;
|
||||
text-align: left;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 15px;
|
||||
border-bottom: 1px solid #f3f4f6;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.files-table {
|
||||
&-file {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
&-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: #f0f9ff;
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-right: 12px;
|
||||
border: 2px solid #6366f1;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -19,8 +19,8 @@ export default function ProtectedFilesTable() {
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div>
|
||||
<div>
|
||||
<div className="files-table-file">
|
||||
<div className="files-table-icon">
|
||||
🛡️
|
||||
</div>
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user