feat: filter assignments by course in lesson

This commit is contained in:
Jannat Patel
2025-12-19 17:42:33 +05:30
parent 984a63c46a
commit 8048cb47c5
5 changed files with 56 additions and 14 deletions

View File

@@ -4,6 +4,7 @@ import AssessmentPlugin from '@/components/AssessmentPlugin.vue'
import translationPlugin from '../translation'
import { usersStore } from '@/stores/user'
import { call } from 'frappe-ui'
import router from '@/router'
export class Assignment {
constructor({ data, api, readOnly }) {
@@ -84,6 +85,7 @@ export class Assignment {
},
})
app.use(translationPlugin)
app.use(router)
app.mount(this.wrapper)
}