diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-17 08:53:08 +0100 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-17 08:54:05 +0100 |
| commit | 6bbeab8861170555d1bae1cda525c32183148ebd (patch) | |
| tree | fdeefbf5af10104d0b1eaf819c173fc98ee85cd3 | |
| parent | 4e29e8555f3a1774645141d791226fa93705f3e3 (diff) | |
fix broken notification configuration, re #6357
| -rw-r--r-- | app/controllers/settings/notification.php | 2 | ||||
| -rw-r--r-- | resources/vue/components/my-courses/NotificationConfiguration.vue | 4 |
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/components/my-courses/NotificationConfiguration.vue b/resources/vue/components/my-courses/NotificationConfiguration.vue index 0153f49..3a508e9 100644 --- a/resources/vue/components/my-courses/NotificationConfiguration.vue +++ b/resources/vue/components/my-courses/NotificationConfiguration.vue @@ -92,7 +92,7 @@ import { createMixin } from "../../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', |
