ConfigWithoutACL is the basic configuration for converting rego to SQL when the object has no ACL fields.
()
| 704 | // ConfigWithoutACL is the basic configuration for converting rego to SQL when |
| 705 | // the object has no ACL fields. |
| 706 | func ConfigWithoutACL() regosql.ConvertConfig { |
| 707 | return regosql.ConvertConfig{ |
| 708 | VariableConverter: regosql.NoACLConverter(), |
| 709 | } |
| 710 | } |
| 711 | |
| 712 | // ConfigChats uses a resource converter so SQL filters qualify chat |
| 713 | // ACL columns consistently with GetChats. |
nothing calls this directly
no test coverage detected