Ah! I see, I need to explictly insert the relation...
# spicedb
s
Ah! I see, I need to explictly insert the relation with
*
. Made it work with:
Copy code
definition user {}

definition album {
    relation owner: user;
    relation public_reader: user:*;
    permission view = owner + public_reader;
    permission edit = owner
}
https://play.authzed.com/s/tbMUS8fmE4By