Sign up
diff --git a/stfrontend/src/helpers/config-loader.ts b/stfrontend/src/helpers/config-loader.ts
index 0c36878..30d45ed 100644
--- a/stfrontend/src/helpers/config-loader.ts
+++ b/stfrontend/src/helpers/config-loader.ts
@@ -1,3 +1,30 @@
+/*
+ScheduleTogether Frontend
+Copyright (C) 2024, Zervó Zadachin
+
+DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License version 3
+as published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License version 3 for more details.
+
+This program is built in two major frameworks, and incorporates external libraries for certain functionalities.
+These frameworks and libraries are covered by their respective licenses, and their usage
+agreements are as outlined in their respective documentation or source
+code.
+
+This program uses assets and resources provided by third parties, and are likely not covered by this copyright notice.
+See their respective directories and relevant notices.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see
.
+*/
+
const configUrl = `${window.location.origin}/config.json`; // Get the base URL dynamically
let apiUrl: string | null = null;
diff --git a/stfrontend/src/helpers/fetch-wrapper.ts b/stfrontend/src/helpers/fetch-wrapper.ts
index 7ab3068..776429e 100644
--- a/stfrontend/src/helpers/fetch-wrapper.ts
+++ b/stfrontend/src/helpers/fetch-wrapper.ts
@@ -1,3 +1,30 @@
+/*
+ScheduleTogether Frontend
+Copyright (C) 2024, Zervó Zadachin
+
+DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License version 3
+as published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License version 3 for more details.
+
+This program is built in two major frameworks, and incorporates external libraries for certain functionalities.
+These frameworks and libraries are covered by their respective licenses, and their usage
+agreements are as outlined in their respective documentation or source
+code.
+
+This program uses assets and resources provided by third parties, and are likely not covered by this copyright notice.
+See their respective directories and relevant notices.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see
.
+*/
+
import { useAuthStore } from '@/stores'
import { getApiUrl } from './config-loader';
diff --git a/stfrontend/src/layouts/action.vue b/stfrontend/src/layouts/action.vue
index f6cd058..48c6ab6 100644
--- a/stfrontend/src/layouts/action.vue
+++ b/stfrontend/src/layouts/action.vue
@@ -1,3 +1,30 @@
+
+
diff --git a/stfrontend/src/layouts/appdefault.vue b/stfrontend/src/layouts/appdefault.vue
index 2a02f7f..e997f24 100644
--- a/stfrontend/src/layouts/appdefault.vue
+++ b/stfrontend/src/layouts/appdefault.vue
@@ -1,3 +1,30 @@
+
+
.
+-->
+
diff --git a/stfrontend/src/pages/dashboard.vue b/stfrontend/src/pages/dashboard.vue
index 9890bd3..c49d660 100644
--- a/stfrontend/src/pages/dashboard.vue
+++ b/stfrontend/src/pages/dashboard.vue
@@ -1,3 +1,30 @@
+
+
.
+-->
+
.
+-->
+
.
+-->
+
.
+*/
+
import type { AlertData } from '@/types';
import { defineStore } from 'pinia'
diff --git a/stfrontend/src/stores/app.ts b/stfrontend/src/stores/app.ts
index 7429543..a82b743 100644
--- a/stfrontend/src/stores/app.ts
+++ b/stfrontend/src/stores/app.ts
@@ -1,4 +1,30 @@
-// Utilities
+/*
+ScheduleTogether Frontend
+Copyright (C) 2024, Zervó Zadachin
+
+DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License version 3
+as published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License version 3 for more details.
+
+This program is built in two major frameworks, and incorporates external libraries for certain functionalities.
+These frameworks and libraries are covered by their respective licenses, and their usage
+agreements are as outlined in their respective documentation or source
+code.
+
+This program uses assets and resources provided by third parties, and are likely not covered by this copyright notice.
+See their respective directories and relevant notices.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see .
+*/
+
import { defineStore } from 'pinia'
export const useAppStore = defineStore('app', {
diff --git a/stfrontend/src/stores/auth.ts b/stfrontend/src/stores/auth.ts
index bdf8a9f..7d47e68 100644
--- a/stfrontend/src/stores/auth.ts
+++ b/stfrontend/src/stores/auth.ts
@@ -1,4 +1,30 @@
-// Utilities
+/*
+ScheduleTogether Frontend
+Copyright (C) 2024, Zervó Zadachin
+
+DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License version 3
+as published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License version 3 for more details.
+
+This program is built in two major frameworks, and incorporates external libraries for certain functionalities.
+These frameworks and libraries are covered by their respective licenses, and their usage
+agreements are as outlined in their respective documentation or source
+code.
+
+This program uses assets and resources provided by third parties, and are likely not covered by this copyright notice.
+See their respective directories and relevant notices.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see .
+*/
+
import { defineStore } from 'pinia'
import type { Auth, DetailedUser } from '@/types'
import { fetchWrapper } from '@/helpers/fetch-wrapper'
diff --git a/stfrontend/src/stores/index.ts b/stfrontend/src/stores/index.ts
index f6eaf3b..af007f0 100644
--- a/stfrontend/src/stores/index.ts
+++ b/stfrontend/src/stores/index.ts
@@ -1,4 +1,30 @@
-// Utilities
+/*
+ScheduleTogether Frontend
+Copyright (C) 2024, Zervó Zadachin
+
+DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License version 3
+as published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License version 3 for more details.
+
+This program is built in two major frameworks, and incorporates external libraries for certain functionalities.
+These frameworks and libraries are covered by their respective licenses, and their usage
+agreements are as outlined in their respective documentation or source
+code.
+
+This program uses assets and resources provided by third parties, and are likely not covered by this copyright notice.
+See their respective directories and relevant notices.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see .
+*/
+
import { createPinia } from 'pinia'
export default createPinia()
diff --git a/stfrontend/src/types/alert.ts b/stfrontend/src/types/alert.ts
index 05ce690..e7af68b 100644
--- a/stfrontend/src/types/alert.ts
+++ b/stfrontend/src/types/alert.ts
@@ -1,3 +1,30 @@
+/*
+ScheduleTogether Frontend
+Copyright (C) 2024, Zervó Zadachin
+
+DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License version 3
+as published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License version 3 for more details.
+
+This program is built in two major frameworks, and incorporates external libraries for certain functionalities.
+These frameworks and libraries are covered by their respective licenses, and their usage
+agreements are as outlined in their respective documentation or source
+code.
+
+This program uses assets and resources provided by third parties, and are likely not covered by this copyright notice.
+See their respective directories and relevant notices.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see .
+*/
+
export type AlertData = {
message: string,
type: string,
diff --git a/stfrontend/src/types/auth.ts b/stfrontend/src/types/auth.ts
index 97bb360..70a8fd6 100644
--- a/stfrontend/src/types/auth.ts
+++ b/stfrontend/src/types/auth.ts
@@ -1,3 +1,30 @@
+/*
+ScheduleTogether Frontend
+Copyright (C) 2024, Zervó Zadachin
+
+DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License version 3
+as published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License version 3 for more details.
+
+This program is built in two major frameworks, and incorporates external libraries for certain functionalities.
+These frameworks and libraries are covered by their respective licenses, and their usage
+agreements are as outlined in their respective documentation or source
+code.
+
+This program uses assets and resources provided by third parties, and are likely not covered by this copyright notice.
+See their respective directories and relevant notices.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see .
+*/
+
export type Auth = {
token: string;
}
\ No newline at end of file
diff --git a/stfrontend/src/types/index.ts b/stfrontend/src/types/index.ts
index 37afabb..c31a7ba 100644
--- a/stfrontend/src/types/index.ts
+++ b/stfrontend/src/types/index.ts
@@ -1,3 +1,30 @@
+/*
+ScheduleTogether Frontend
+Copyright (C) 2024, Zervó Zadachin
+
+DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License version 3
+as published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License version 3 for more details.
+
+This program is built in two major frameworks, and incorporates external libraries for certain functionalities.
+These frameworks and libraries are covered by their respective licenses, and their usage
+agreements are as outlined in their respective documentation or source
+code.
+
+This program uses assets and resources provided by third parties, and are likely not covered by this copyright notice.
+See their respective directories and relevant notices.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see .
+*/
+
export * from './auth';
export * from './user';
export * from './alert'
\ No newline at end of file
diff --git a/stfrontend/src/types/user.ts b/stfrontend/src/types/user.ts
index b6a5775..7b766c4 100644
--- a/stfrontend/src/types/user.ts
+++ b/stfrontend/src/types/user.ts
@@ -1,3 +1,30 @@
+/*
+ScheduleTogether Frontend
+Copyright (C) 2024, Zervó Zadachin
+
+DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License version 3
+as published by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License version 3 for more details.
+
+This program is built in two major frameworks, and incorporates external libraries for certain functionalities.
+These frameworks and libraries are covered by their respective licenses, and their usage
+agreements are as outlined in their respective documentation or source
+code.
+
+This program uses assets and resources provided by third parties, and are likely not covered by this copyright notice.
+See their respective directories and relevant notices.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see .
+*/
+
export type DetailedUser = {
id: number,
uuid: string,