You are here

public property Client::$settings in OAuth2 Server 2.0.x

Same name and namespace in other branches
  1. 8 src/Entity/Client.php \Drupal\oauth2_server\Entity\Client::settings

Client specific settings.

Type: array

File

src/Entity/Client.php, line 106

Class

Client
Defines the OAuth2 client entity.

Namespace

Drupal\oauth2_server\Entity

Code

public $settings = [
  'override_grant_types' => FALSE,
  'allow_implicit' => FALSE,
  'grant_types' => [
    'authorization_code' => 'authorization_code',
    'refresh_token' => 'refresh_token',
  ],
];