More swagger documentation

This commit is contained in:
2024-12-13 16:24:19 +01:00
parent 4498c865f2
commit 6f6efa5886
5 changed files with 512 additions and 40 deletions

View File

@@ -68,7 +68,7 @@ export const useSearchStore = defineStore("searchStore", {
}
// Exercise 2.4
else if (this.searchTerm.includes("UPDATE")) {
else if (this.searchTerm.toUpperCase().includes("UPDATE")) {
const accountStore = useAccountStore()
await accountStore.refreshAccount()
@@ -79,7 +79,7 @@ export const useSearchStore = defineStore("searchStore", {
}
// Exercise 2.6
else if (this.searchTerm.includes("DELETE")) {
else if (this.searchTerm.toUpperCase().includes("DELETE")) {
const bandStore = useBandStore()
await bandStore.getBand("muse")