November 2017
Beginner to intermediate
288 pages
7h 33m
English
Now, let's see how we can secure the set of articles that belong to a specific user:
path /articles/{uid}/drafts { /create { create() { isCreator(uid) } } /publish { update() { isCreator(uid) } } /delete { delete() { isCreator(uid) } } } isCreator(uid) { uid == auth.uid }
Read now
Unlock full access