feature/main-19-ActivitiesTab #20

Merged
husbando_enjoyer merged 4 commits from feature/main-19-ActivitiesTab into main 2026-01-20 20:22:44 +01:00
Showing only changes of commit 2d509e352d - Show all commits

View File

@@ -2,7 +2,6 @@ const ACTIVITIES_CONFIG = {
apiBase: "https://openbokeron.uma.es/gitea/api/v1",
repo: "OpenBokeron/Actividades",
state: "open",
limit: 9,
};
const ACTIVITY_LABELS = {
@@ -84,7 +83,7 @@ if (container) {
const labels = LANGUAGE_LABELS[lang];
const fetchActivities = async () => {
const url = `${ACTIVITIES_CONFIG.apiBase}/repos/${ACTIVITIES_CONFIG.repo}/issues?state=${ACTIVITIES_CONFIG.state}&limit=${ACTIVITIES_CONFIG.limit}`;
const url = `${ACTIVITIES_CONFIG.apiBase}/repos/${ACTIVITIES_CONFIG.repo}/issues?state=${ACTIVITIES_CONFIG.state}`;
const response = await fetch(url, {
headers: {
Accept: "application/json",