Mostly backend models stuff

Changed some models, did some work on database, created a class diagram.
This commit is contained in:
Nadegamra
2021-09-08 20:20:32 +03:00
parent 3e82ea9392
commit a3b4bb2e30
11 changed files with 105 additions and 14 deletions

View File

@@ -3,15 +3,10 @@ import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
import BalmUI from "balm-ui"; // Official Google Material Components
import BalmUIPlus from "balm-ui-plus"; // BalmJS Team Material Components
import "balm-ui-css";
const app = createApp(App);
app.use(router);
app.use(store);
app.use(BalmUI);
app.use(BalmUIPlus);
app.mount("#app");

View File

@@ -1,6 +1,6 @@
<template>
<h1 @click="makeTestCall">OpenID connect return endpoint</h1>
{{ response }}
<pre style="text-align: left">{{ response }}</pre>
{{ openIdToken }}
<hr />
{{ $route }}