Module: Google::Cloud::AppEngine::V1::LoginRequirement

Defined in:
proto_docs/google/appengine/v1/app_yaml.rb

Overview

Methods to restrict access to a URL based on login status.

Constant Summary collapse

LOGIN_UNSPECIFIED =

Not specified. LOGIN_OPTIONAL is assumed.

0
LOGIN_OPTIONAL =

Does not require that the user is signed in.

1
LOGIN_ADMIN =

If the user is not signed in, the auth_fail_action is taken. In addition, if the user is not an administrator for the application, they are given an error message regardless of auth_fail_action. If the user is an administrator, the handler proceeds.

2
LOGIN_REQUIRED =

If the user has signed in, the handler proceeds normally. Otherwise, the auth_fail_action is taken.

3