From 381283d864f3a7ced4b7a41e11b393eff383eb72 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Thu, 19 Jun 2014 23:30:30 -0700 Subject: [PATCH] Document "me" ACL. --- reference.html | 6 ++++++ 1 file changed, 6 insertions(+) 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.