(params)
| 10 | legacyModuleMappings; |
| 11 | |
| 12 | model(params) { |
| 13 | return { |
| 14 | moduleName: params.module.substr(0, params.module.lastIndexOf('.')), |
| 15 | mappings: this.legacyModuleMappings.buildMappings( |
| 16 | this.legacyModuleMappings.legacyMappings, |
| 17 | ), |
| 18 | }; |
| 19 | } |
| 20 | |
| 21 | redirect(model) { |
| 22 | let { moduleName, mappings } = model; |
nothing calls this directly
no test coverage detected