You are here

public property OAuth2ServerClient::$settings in OAuth2 Server 7

An array of settings.

Used to override server-level settings.

Type: array

File

includes/oauth2_server.client.inc, line 66

Class

OAuth2ServerClient
Entity class representing the oauth2_server_client entity type.

Code

public $settings = array(
  'override_grant_types' => FALSE,
  'allow_implicit' => FALSE,
  'grant_types' => array(
    'authorization_code' => 'authorization_code',
    'refresh_token' => 'refresh_token',
  ),
);