-
Notifications
You must be signed in to change notification settings - Fork 62
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
Configure URIs as single strings instead of as scheme/hostname/port/path #60
Comments
cfryanr
added a commit
that referenced
this issue
Mar 5, 2020
- Renamed `oidc.logout.redirect_to_uri` config option to `redirect_uri` - Renamed `authorization`, `token`, and `callback` config options to `authorization_uri`, `token_uri`, and `callback_uri` - Deleted the unused `jwks_uri` config option - The `authorization_uri`, `token_uri`, and `callback_uri` config options became simple strings instead of `Endpoint` objects [Issue #60] Signed-off-by: Margo Crawford <[email protected]>
cfryanr
pushed a commit
that referenced
this issue
Mar 5, 2020
- Renamed `oidc.logout.redirect_to_uri` config option to `redirect_uri` - Renamed `authorization`, `token`, and `callback` config options to `authorization_uri`, `token_uri`, and `callback_uri` - Deleted the unused `jwks_uri` config option - The `authorization_uri`, `token_uri`, and `callback_uri` config options became simple strings instead of `Endpoint` objects [Issue #60] Signed-off-by: Ryan Richard <[email protected]>
andrewedstrom
added a commit
that referenced
this issue
Mar 6, 2020
- Remove unneeded fixtures [Issue #60] Signed-off-by: Ryan Richard <[email protected]>
andrewedstrom
pushed a commit
that referenced
this issue
Mar 7, 2020
- Make constant static - Inline functions are labeled with `inline` keyword - Use correct return type for move assignment operator [Issue #60] Signed-off-by: Andrew Edstrom <[email protected]>
andrewedstrom
added a commit
that referenced
this issue
Mar 7, 2020
[Issue #60] Signed-off-by: Ryan Richard <[email protected]>
andrewedstrom
pushed a commit
that referenced
this issue
Mar 9, 2020
This avoids a conflict we saw in gcc between the getter "Uri::PathQueryFragment" and the class definition PathQueryFragment. [Issue #60] Signed-off-by: Andrew Edstrom <[email protected]>
peterhaochen47
pushed a commit
that referenced
this issue
Mar 12, 2020
- Renamed `oidc.logout.redirect_to_uri` config option to `redirect_uri` - Renamed `authorization`, `token`, and `callback` config options to `authorization_uri`, `token_uri`, and `callback_uri` - Deleted the unused `jwks_uri` config option - The `authorization_uri`, `token_uri`, and `callback_uri` config options became simple strings instead of `Endpoint` objects [Issue #60] Signed-off-by: Tyler Schultz <[email protected]>
peterhaochen47
pushed a commit
that referenced
this issue
Mar 12, 2020
- Remove unneeded fixtures [Issue #60] Signed-off-by: Peter Chen <[email protected]>
peterhaochen47
pushed a commit
that referenced
this issue
Mar 12, 2020
- Make constant static - Inline functions are labeled with `inline` keyword - Use correct return type for move assignment operator [Issue #60] Signed-off-by: Andrew Edstrom <[email protected]>
peterhaochen47
pushed a commit
that referenced
this issue
Mar 12, 2020
[Issue #60] Signed-off-by: Ryan Richard <[email protected]>
peterhaochen47
pushed a commit
that referenced
this issue
Mar 12, 2020
This avoids a conflict we saw in gcc between the getter "Uri::PathQueryFragment" and the class definition PathQueryFragment. [Issue #60] Signed-off-by: Andrew Edstrom <[email protected]>
peterhaochen47
pushed a commit
that referenced
this issue
Mar 12, 2020
- Renamed `oidc.logout.redirect_to_uri` config option to `redirect_uri` - Renamed `authorization`, `token`, and `callback` config options to `authorization_uri`, `token_uri`, and `callback_uri` - Deleted the unused `jwks_uri` config option - The `authorization_uri`, `token_uri`, and `callback_uri` config options became simple strings instead of `Endpoint` objects [Issue #60] Signed-off-by: Peter Chen <[email protected]>
peterhaochen47
pushed a commit
that referenced
this issue
Mar 12, 2020
- Remove unneeded fixtures [Issue #60] Signed-off-by: Tyler Schultz <[email protected]>
peterhaochen47
pushed a commit
that referenced
this issue
Mar 12, 2020
- Make constant static - Inline functions are labeled with `inline` keyword - Use correct return type for move assignment operator [Issue #60] Signed-off-by: Peter Chen <[email protected]>
peterhaochen47
pushed a commit
that referenced
this issue
Mar 12, 2020
[Issue #60] Signed-off-by: Tyler Schultz <[email protected]>
peterhaochen47
pushed a commit
that referenced
this issue
Mar 12, 2020
This avoids a conflict we saw in gcc between the getter "Uri::PathQueryFragment" and the class definition PathQueryFragment. [Issue #60] Signed-off-by: Peter Chen <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To make the authservice a little easier to configure, we could change the configuration format to take URIs as plain old URI strings instead of as structures of scheme/hostname/port/path.
The text was updated successfully, but these errors were encountered: