(state)
| 46 | }, |
| 47 | |
| 48 | isLicensor (state) { |
| 49 | return ((state != null ? state.permissions : undefined) || []).indexOf(User.PERMISSIONS.LICENSOR) > -1 |
| 50 | }, |
| 51 | |
| 52 | isAPIClient (state) { |
| 53 | return ((state != null ? state.permissions : undefined) || []).indexOf(User.PERMISSIONS.API_CLIENT) > -1 |
nothing calls this directly
no outgoing calls
no test coverage detected