aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2026-03-17 08:53:08 +0100
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2026-03-17 08:53:15 +0100
commit7a6232fb4276589f55f4ba92e06c925e21a7501d (patch)
treef1b1f9f93ac2ed9c73ad90f9a058cc0b1bdc18a9
parent4f265a61c22ad367d4c5e046ce07e7a5c0c13c64 (diff)
fix broken notification configuration, re #6357
-rw-r--r--app/controllers/settings/notification.php2
-rw-r--r--resources/vue/apps/my-courses/NotificationConfiguration.vue4
2 files changed, 3 insertions, 3 deletions
diff --git a/app/controllers/settings/notification.php b/app/controllers/settings/notification.php
index 0fd2c4e..f108706 100644
--- a/app/controllers/settings/notification.php
+++ b/app/controllers/settings/notification.php
@@ -85,7 +85,7 @@ class Settings_NotificationController extends Settings_SettingsController
])
->withVuexStore(
'MyCoursesStore',
- 'mycoursesnotificationstore',
+ 'mycourses',
app(MyCoursesHelper::class)->createVueAppData('')
)
);
diff --git a/resources/vue/apps/my-courses/NotificationConfiguration.vue b/resources/vue/apps/my-courses/NotificationConfiguration.vue
index 4038202..0b92cf6 100644
--- a/resources/vue/apps/my-courses/NotificationConfiguration.vue
+++ b/resources/vue/apps/my-courses/NotificationConfiguration.vue
@@ -92,7 +92,7 @@ import { createMixin } from "@/vue/mixins/MyCoursesMixin";
export default {
name: 'MyCoursesNotificationConfiguration',
mixins: [
- createMixin(true)
+ createMixin()
],
props: {
storeUrl: String,
@@ -106,7 +106,7 @@ export default {
}
},
computed: {
- ...mapState('mycoursesnotificationstore', [
+ ...mapState('mycourses', [
'courses',
'groups',
'config',