-
-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OAuth Gateways #1997
Merged
Merged
OAuth Gateways #1997
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cyberboss
added
Client
Issue with the .NET client library
Feature
New functionality
Security
Issue pertaining to Authentication/Authorization or NTC (Never Trust the Client)
Documentation
Documentation updates
REST
The JSON REST API for server control
Configuration
Regarding the server setup JSON
GraphQL
The GraphQL API for server control
labels
Nov 2, 2024
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #1997 +/- ##
==========================================
- Coverage 95.63% 95.60% -0.03%
==========================================
Files 799 802 +3
Lines 170498 170557 +59
Branches 3502 3510 +8
==========================================
+ Hits 163052 163063 +11
- Misses 6900 6945 +45
- Partials 546 549 +3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Client
Issue with the .NET client library
Configuration
Regarding the server setup JSON
Documentation
Documentation updates
Feature
New functionality
GraphQL
The GraphQL API for server control
REST
The JSON REST API for server control
Security
Issue pertaining to Authentication/Authorization or NTC (Never Trust the Client)
size/L
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #1996
🆑
OAuth providers can now forward user tokens to clients.
/:cl:
🆑 Configuration
The new configuration version is 5.4.0
Added
Gateway
enum to each OAuth provider's configuration section. Can be one ofDisabled
(default),Enabled
, orOnly
./:cl:
🆑 HTTP API
Added
gatewayOnly
to OAuthProviderInfo models. Iftrue
, the provider may only be used for gateway authentication. Ifnull
, the provider may NOT be used for gateway authentication.Added endpoint
/api/oauth_gateway
.POST
ing here with the OAuth authentication scheme will respond with a JSON object containing anaccessCode
for that provider IF the server is configured to allow OAuth gateways./:cl:
🆑 GraphQL API
Added
oAuthGateway
mutation which accepts the OAuth authentication and will respond with a payload containing anaccessCode
for that provider IF the server is configured to allow OAuth gateways./:cl:
🆑 Nuget: API
Updated to API version 10.11.0.
Added
OAuthGatewayResponse
model.Added
GatewayOnly
nullable boolean field toOAuthProviderInfo
./:cl:
🆑 Nuget: Client
Updated to API library version 16.2.0.
/:cl:
Merging with
[APIDeploy][GQLDeploy][NugetDeploy]