In GAE, is there a way to find out if a User is an administrator?
While the is_current_user_admin()
reveals whether the current user is an administrator, I'd like to know if there's a way to discover if a given User
object is for an administrator or not (e.g. a hypothetical User.is_admin()
function).
Thank you for reading.
Brian