diff --git a/reference.html b/reference.html index 7129b71..7f9d3b3 100644 --- a/reference.html +++ b/reference.html @@ -138,10 +138,16 @@ subjects:
  • { name: "foo", readable_only_by: "XXXprofileXXX", writable_only_by: "YYYprofileYYY" }
  • { name: "foo", readable_only_by: "admin" }
  • { name: "foo", writable_only_by: "admin" }
  • +
  • { name: "foo", readable_only_by: "me" }
  • +
  • { name: "foo", writable_only_by: "me" }
  • where XXXprofileXXX and YYYprofileYYY are profile keys. admin is a magic value that only allows accounts marked as administrators in the AppEngine application to perform the action. +me is s placeholder that is replaced on the server side with the current profile ID +in both requests and responses. Using the result of currentProfile() +instead of me will fetch the same data from the server but appear as a different +group in the client.