(scopeID, dbID string)
| 276 | } |
| 277 | |
| 278 | func idMatches(scopeID, dbID string) bool { |
| 279 | return scopeID == dbID || scopeID == policy.WildcardSymbol || dbID == policy.WildcardSymbol |
| 280 | } |
| 281 | |
| 282 | func intersectType(scopeType, dbType string) string { |
| 283 | if scopeType == dbType { |