-
Notifications
You must be signed in to change notification settings - Fork 12
build: update to angular 21 #854
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
base: main
Are you sure you want to change the base?
Conversation
...e/src/lib/operators/dialogs/helpers/multi-layer-selection/multi-layer-selection.component.ts
Show resolved
Hide resolved
...src/lib/operators/dialogs/helpers/multi-layer-selection/multi-layer-selection.component.html
Show resolved
Hide resolved
...e/src/lib/operators/dialogs/helpers/multi-layer-selection/multi-layer-selection.component.ts
Show resolved
Hide resolved
| ], | ||
| }) | ||
| export class OidcComponent implements OnInit, OnDestroy { | ||
| export class OidcComponent { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did you test the oidc login? I tried login in but I get
"Invalid parameter: redirect_uri"
maybe I configured something wrong though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works for me, either you misconfigured or I need more info on that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
against which oidc endpoint did you test?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
auth.geoengine.io
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and which realm?
My config is:
[oidc]
enabled = true
issuer = "https://auth.geoengine.io/realms/CropHype"
client_id = "geo-engine"
client_secret = ""
redirect_uri = "http://localhost:4200/"
scopes = ["profile", "email"]
and I get
Invalid parameter: redirect_uri
No description provided.