Ralph Yozzo
Ralph Yozzo

Reputation: 1142

Google App Engine: is_current_user_admin how can I tell if the admin is a owner, developer or viewer?

In appengine, you can give different privileges to users:

owner, developer or viewer.

I'd like to be able to query that information from the Python API.

Is this possible now? If not, is it on the road map?

Upvotes: 2

Views: 562

Answers (1)

Nick Johnson
Nick Johnson

Reputation: 101149

That's not currently possible, no - the Users API will only return if the user is an admin or not. You should check if there's a feature request filed, and file one if there isn't.

Upvotes: 5

Related Questions