()
| 1356 | } |
| 1357 | |
| 1358 | lastClassroomItems () { |
| 1359 | // We don't always have a classroom at hand, so whenever we do interact with a classroom, we can temporarily store the classroom items setting |
| 1360 | if (this.lastClassroomItemsCache != null) { return this.lastClassroomItemsCache } |
| 1361 | this.lastClassroomItemsCache = storage.load('last-classroom-items') |
| 1362 | return this.lastClassroomItemsCache != null ? this.lastClassroomItemsCache : false |
| 1363 | } |
| 1364 | |
| 1365 | setLastClassroomItems (enabled) { |
| 1366 | this.lastClassroomItemsCache = enabled |
no test coverage detected