Because administrator status is not persisted in the datastore,
is_current_user_admin() is a separate function rather than a member function
of the User class. The status only exists for the user making the current
request.
Returns
True if the user is an administrator; all other user types return False.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-09-30 UTC."],[[["The function `is_current_user_admin()` determines if the user making a request is an application administrator."],["This function is distinct from the `User` class because admin status is not stored in the datastore."],["The admin status is only applicable to the user during the current request."],["`google.appengine.api.users.IsCurrentUserAdmin` is an alias for `is_current_user_admin()`."]]],[]]