(problem)
| 105 | }, |
| 106 | methods: { |
| 107 | problemFrequency (problem) { |
| 108 | return problem.count / this.problemCountByLevel[problem.levelSlug] |
| 109 | }, |
| 110 | loadCampaigns: co.wrap(function * () { |
| 111 | this.campaigns = yield api.campaigns.getAll({ project: 'levels' }) |
| 112 | this.selectedCampaign = _.find(this.campaigns, c => c.name === 'Dungeon') |
nothing calls this directly
no outgoing calls
no test coverage detected