()
| 31 | } |
| 32 | }, |
| 33 | data () { |
| 34 | return { |
| 35 | levelSessions: [], |
| 36 | users: [], |
| 37 | classroom: null, |
| 38 | levels: null, |
| 39 | level: null, |
| 40 | course: null, |
| 41 | courseInstance: null, |
| 42 | amSchoolAdministratorOfGallery: null, |
| 43 | amTeacherOfGallery: null, |
| 44 | product: utils.isOzaria ? 'ozar' : 'coco' |
| 45 | } |
| 46 | }, |
| 47 | computed: { |
| 48 | levelName () { return this.level && (utils.i18n(this.level, 'displayName') || utils.i18n(this.level, 'name')) }, |
| 49 | courseName () { return this.course && utils.i18n(this.course, 'name') }, |
nothing calls this directly
no outgoing calls
no test coverage detected