(state)
| 41 | }, |
| 42 | |
| 43 | isAdmin (state) { |
| 44 | const permissions = state.permissions || [] |
| 45 | return permissions.indexOf(User.PERMISSIONS.COCO_ADMIN) > -1 |
| 46 | }, |
| 47 | |
| 48 | isLicensor (state) { |
| 49 | return ((state != null ? state.permissions : undefined) || []).indexOf(User.PERMISSIONS.LICENSOR) > -1 |
nothing calls this directly
no outgoing calls
no test coverage detected