basebox.tech -> basebox.io

This commit is contained in:
Markus Thielen 2023-04-04 19:41:37 +02:00
parent 4eceba879d
commit 62c527acf8
11 changed files with 18 additions and 18 deletions

View File

@ -2,7 +2,7 @@
Component for editing task lists. Component for editing task lists.
Part of the basebox sample Todo app. Part of the basebox sample Todo app.
https://basebox.tech https://basebox.io
--> -->
<template> <template>
<main> <main>

View File

@ -2,7 +2,7 @@
About component. About component.
Part of the basebox sample Todo app. Part of the basebox sample Todo app.
https://basebox.tech https://basebox.io
--> -->
<script setup> <script setup>
import AboutItem from './AboutItem.vue' import AboutItem from './AboutItem.vue'
@ -21,7 +21,7 @@ import CommunityIcon from './icons/IconCommunity.vue'
</template> </template>
<template #heading>About</template> <template #heading>About</template>
<p>This is a very simple demo app for <a href="https://basebox.tech">basebox</a>, <p>This is a very simple demo app for <a href="https://basebox.io">basebox</a>,
the medical grade backend that helps you get your project done with ease.</p> the medical grade backend that helps you get your project done with ease.</p>
</AboutItem> </AboutItem>
@ -47,7 +47,7 @@ import CommunityIcon from './icons/IconCommunity.vue'
<li>Any suggestion?</li> <li>Any suggestion?</li>
<li>Any question?</li> <li>Any question?</li>
</ul> </ul>
<p>We'd be REALLY happy to <a href="https://basebox.tech/open-a-aticket">hear from you</a>!</p> <p>We'd be REALLY happy to <a href="https://basebox.io/open-a-aticket">hear from you</a>!</p>
</AboutItem> </AboutItem>
<AboutItem> <AboutItem>
@ -56,12 +56,12 @@ import CommunityIcon from './icons/IconCommunity.vue'
</template> </template>
<template #heading>Support</template> <template #heading>Support</template>
If you need help, check out our <a href="https://basebox.tech">website</a>.<br> If you need help, check out our <a href="https://basebox.io">website</a>.<br>
Some support options: Some support options:
<ul> <ul>
<li>See our <a href="https://basebox.tech/faq">FAQs</a></li> <li>See our <a href="https://basebox.io/faq">FAQs</a></li>
<li>Read the <a href="https://docs.basebox.tech">documentation</a></li> <li>Read the <a href="https://docs.basebox.io">documentation</a></li>
<li>Open a <a href="https://basebox.tech/open-a-ticket">ticket</a></li> <li>Open a <a href="https://basebox.io/open-a-ticket">ticket</a></li>
</ul> </ul>
</AboutItem> </AboutItem>

View File

@ -2,7 +2,7 @@
Root component for the Todo app that is displayed if the user is logged in. Root component for the Todo app that is displayed if the user is logged in.
Part of the basebox sample Todo app. Part of the basebox sample Todo app.
https://basebox.tech https://basebox.io
--> -->
<template> <template>

View File

@ -2,7 +2,7 @@
Welcome component. Welcome component.
Part of the basebox sample Todo app. Part of the basebox sample Todo app.
https://basebox.tech https://basebox.io
--> -->
<script setup> <script setup>

View File

@ -2,7 +2,7 @@
* Main jaJavaScript module. * Main jaJavaScript module.
* *
* Part of the basebox sample TODO app. * Part of the basebox sample TODO app.
* https://basebox.tech * https://basebox.io
*/ */
import { createApp } from 'vue' import { createApp } from 'vue'
import App from './App.vue' import App from './App.vue'

View File

@ -2,7 +2,7 @@
* Routes for the Vue router. * Routes for the Vue router.
* *
* Part of the basebox sample TODO app. * Part of the basebox sample TODO app.
* https://basebox.tech * https://basebox.io
*/ */
import {loggedIn, showError, store} from "../store"; import {loggedIn, showError, store} from "../store";

View File

@ -2,7 +2,7 @@
* Store.js - global app state. * Store.js - global app state.
* *
* Part of the basebox sample TODO app. * Part of the basebox sample TODO app.
* https://basebox.tech * https://basebox.io
*/ */
import { reactive } from 'vue' import { reactive } from 'vue'
import {gqlQuery} from "./util/net"; import {gqlQuery} from "./util/net";
@ -124,7 +124,7 @@ export async function storeInit(session) {
if (store.lists.length === 0) { if (store.lists.length === 0) {
gqlQuery(`mutation { gqlQuery(`mutation {
createList( createList(
title: "Default", title: "Default",
user: { username: "${store.session.username}" } user: { username: "${store.session.username}" }
) { ) {
title title

View File

@ -2,7 +2,7 @@
* Misc utility functions. * Misc utility functions.
* *
* Part of the basebox sample Todo app. * Part of the basebox sample Todo app.
* https://basebox.tech * https://basebox.io
*/ */
import {Modal} from "bootstrap"; import {Modal} from "bootstrap";

View File

@ -2,7 +2,7 @@
* Network related functions. * Network related functions.
* *
* Part of the basebox sample Todo app. * Part of the basebox sample Todo app.
* https://basebox.tech * https://basebox.io
*/ */
import {clearSession, store} from "../store"; import {clearSession, store} from "../store";

View File

@ -2,7 +2,7 @@
* OAuth specific functions. * OAuth specific functions.
* *
* Part of the basebox sample Todo app. * Part of the basebox sample Todo app.
* https://basebox.tech * https://basebox.io
*/ */
import {store} from "../store"; import {store} from "../store";

View File

@ -2,7 +2,7 @@
Home view. Home view.
Part of the basebox sample Todo app. Part of the basebox sample Todo app.
https://basebox.tech https://basebox.io
--> -->
<script setup> <script setup>