We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d00e11 commit 240ad39Copy full SHA for 240ad39
docs/rls/index.md
@@ -33,7 +33,7 @@ use spacetimedb::{client_visibility_filter, Filter};
33
/// A client can only see their account
34
#[client_visibility_filter]
35
const ACCOUNT_FILTER: Filter = Filter::Sql(
36
- "SELECT * FROM account WHERE identity = :sender"
+ "SELECT * FROM account WHERE account.identity = :sender"
37
);
38
```
39
:::
@@ -52,7 +52,7 @@ public partial class Module
52
/// </summary>
53
[SpacetimeDB.ClientVisibilityFilter]
54
public static readonly Filter ACCOUNT_FILTER = new Filter.Sql(
55
56
57
}
58
0 commit comments