()
| 64 | } |
| 65 | |
| 66 | func (l *License) AllFeaturesClaim() bool { |
| 67 | if all, ok := l.Claims["all_features"].(bool); ok { |
| 68 | return all |
| 69 | } |
| 70 | return false |
| 71 | } |
| 72 | |
| 73 | // FeaturesClaims provides the feature claims in license. |
| 74 | // This only returns the explicit claims. If checking for actual usage, |
no outgoing calls
no test coverage detected