(store, { modelName, id })
| 17 | |
| 18 | shouldReloadRecord(store, { modelName, id }) { |
| 19 | if (modelName === 'project') { |
| 20 | this.currentProject = id; |
| 21 | } else if (modelName === 'project-version') { |
| 22 | this.currentProjectVersion = id; |
| 23 | } |
| 24 | return; // return undefined so auto determinated |
| 25 | } |
| 26 | |
| 27 | shouldBackgroundReloadAll() { |
| 28 | return false; |
| 29 | } |
nothing calls this directly
no outgoing calls
no test coverage detected