Vorbereitung Release 03.0 #94

Merged
tpeetz merged 115 commits from develop/0.3.0 into main 2026-08-25 06:01:18 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 709ac9512c - Show all commits
+1 -1
View File
@@ -1,7 +1,7 @@
<template>
<div id="app">
<nav class="navbar navbar-expand navbar-dark bg-dark">
<a href="/" class="navbar-brand">bezKoder</a>
<a href="/" class="navbar-brand">Kontor</a>
<div class="navbar-nav mr-auto">
<li class="nav-item">
<router-link to="/home" class="nav-link">
+2 -2
View File
@@ -1,11 +1,11 @@
import axios from "axios";
import authHeader from "./auth-header";
const API_URL = "http://localhost:8200/health/";
const API_URL = "http://localhost:8200/api/user/";
class UserService {
getPublicContent() {
return axios.get(API_URL + "all");
return axios.get(API_URL + "profiles");
}
getUserBoard() {