Skip to content
Snippets Groups Projects
Commit bbbf8a63 authored by Brad Jones's avatar Brad Jones
Browse files

Instantiate OAuth ClientEntity with isConfidential property

parent e1186023
No related branches found
Tags 8.x-2.0-alpha4
No related merge requests found
......@@ -28,6 +28,9 @@ class ClientEntity implements ClientEntityInterface {
if ($entity->hasField('redirect')) {
$this->redirectUri = $entity->get('redirect')->value;
}
if ($entity->hasField('confidential')) {
$this->isConfidential = (bool) $entity->get('confidential')->value;
}
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment