({
keyWithSearchPermissions,
}: {
keyWithSearchPermissions: string;
})
| 21 | } |
| 22 | |
| 23 | export function createFeedKey({ |
| 24 | keyWithSearchPermissions, |
| 25 | }: { |
| 26 | keyWithSearchPermissions: string; |
| 27 | }) { |
| 28 | return createKey({ |
| 29 | keyWithSearchPermissions, |
| 30 | filter_by: `is_restrict:=false && is_public:=true`, |
| 31 | }); |
| 32 | } |
| 33 | |
| 34 | export function createUserKey({ |
| 35 | keyWithSearchPermissions, |
nothing calls this directly
no test coverage detected