(...args)
| 257 | |
| 258 | 'play/hoc-2020' () { return this.navigate('/play/hoc-2018', { trigger: true, replace: true }) }, // Added to handle HoC PDF |
| 259 | home (...args) { |
| 260 | if (utils.isCodeCombat && me.useChinaHomeView()) { |
| 261 | return go('HomeCNView').call(this, ...args) |
| 262 | } else { |
| 263 | if (utils.isCodeCombat) { |
| 264 | return this.routeDirectly('HomeBeta', [], { vueRoute: true, baseTemplate: 'base-flat-vue' }) |
| 265 | } else { |
| 266 | return this.routeDirectly('HomeView', []) |
| 267 | } |
| 268 | } |
| 269 | }, |
| 270 | |
| 271 | i18n: go('i18n/I18NHomeView'), |
| 272 | 'i18n/thang/:handle': go('i18n/I18NEditThangTypeView'), |
nothing calls this directly
no test coverage detected