()
| 144 | } |
| 145 | |
| 146 | getDefaultActions () { |
| 147 | const actions = [] |
| 148 | for (const action of Array.from(_.values(this.getActions()))) { |
| 149 | if (!_.any(ThangType.defaultActions, prefix => _.string.startsWith(action.name, prefix))) { continue } |
| 150 | actions.push(action) |
| 151 | } |
| 152 | return actions |
| 153 | } |
| 154 | |
| 155 | buildActions () { |
| 156 | if (!this.isFullyLoaded()) { return null } |
nothing calls this directly
no test coverage detected