mirror of
https://github.com/ProjectSegfault/website.git
synced 2025-05-31 14:12:04 +05:30
Run formatter
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
|
@@ -5,7 +5,13 @@ import type { Provider } from "@auth/core/providers";
|
||||
import type { Profile } from "@auth/core/types";
|
||||
import { redirect, type Handle } from "@sveltejs/kit";
|
||||
import { sequence } from "@sveltejs/kit/hooks";
|
||||
import { announcements, pubnixUsers, blogPosts, blogTags, blogAuthors } from "./stores";
|
||||
import {
|
||||
announcements,
|
||||
pubnixUsers,
|
||||
blogPosts,
|
||||
blogTags,
|
||||
blogAuthors
|
||||
} from "./stores";
|
||||
import axios from "axios";
|
||||
import { Agent } from "https";
|
||||
|
||||
@@ -74,10 +80,10 @@ export const fetchGhost = async (action: string, additional?: string) => {
|
||||
|
||||
const updateMap = async () => {
|
||||
try {
|
||||
const res = await axios(
|
||||
env.KUMA_URL,
|
||||
{ httpsAgent: agent, timeout: 10000 }
|
||||
);
|
||||
const res = await axios(env.KUMA_URL, {
|
||||
httpsAgent: agent,
|
||||
timeout: 10000
|
||||
});
|
||||
|
||||
if (res.status === 200) {
|
||||
announcements.set(res.data);
|
||||
@@ -89,10 +95,10 @@ const updateMap = async () => {
|
||||
}
|
||||
|
||||
try {
|
||||
const res = await axios(
|
||||
"https://publapi.p.projectsegfau.lt/users",
|
||||
{ httpsAgent: agent, timeout: 10000 }
|
||||
);
|
||||
const res = await axios("https://publapi.p.projectsegfau.lt/users", {
|
||||
httpsAgent: agent,
|
||||
timeout: 10000
|
||||
});
|
||||
|
||||
if (res.status === 200) {
|
||||
pubnixUsers.set(res.data);
|
||||
@@ -142,4 +148,4 @@ const updateMap = async () => {
|
||||
|
||||
updateMap();
|
||||
|
||||
setInterval(updateMap, 30000);
|
||||
setInterval(updateMap, 30000);
|
||||
|
@@ -10,5 +10,5 @@ export const load = (async () => {
|
||||
return {
|
||||
users: get(pubnixUsers),
|
||||
...meta
|
||||
}
|
||||
};
|
||||
}) satisfies PageServerLoad;
|
||||
|
@@ -10,5 +10,5 @@ export const load = (async () => {
|
||||
return {
|
||||
users: get(pubnixUsers),
|
||||
...meta
|
||||
}
|
||||
};
|
||||
}) satisfies PageServerLoad;
|
||||
|
@@ -8,4 +8,4 @@ export const blogPosts: Writable<{}> = writable({});
|
||||
|
||||
export const blogTags: Writable<{}> = writable({});
|
||||
|
||||
export const blogAuthors: Writable<{}> = writable({});
|
||||
export const blogAuthors: Writable<{}> = writable({});
|
||||
|
Reference in New Issue
Block a user