Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simple_oauth-3353859
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
simple_oauth-3353859
Commits
bbbf8a63
Commit
bbbf8a63
authored
3 years ago
by
Brad Jones
Browse files
Options
Downloads
Patches
Plain Diff
Instantiate OAuth ClientEntity with isConfidential property
parent
e1186023
No related branches found
Branches containing commit
Tags
8.x-2.0-alpha4
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Entities/ClientEntity.php
+3
-0
3 additions, 0 deletions
src/Entities/ClientEntity.php
with
3 additions
and
0 deletions
src/Entities/ClientEntity.php
+
3
−
0
View file @
bbbf8a63
...
...
@@ -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
;
}
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment