-
Notifications
You must be signed in to change notification settings - Fork 258
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
Add legacy application token section #6783
Add legacy application token section #6783
Conversation
<ol> | ||
<li> | ||
<strong>Client Application Changes:</strong> | ||
<p>Update your client application to no longer use the |
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.
use the
needs space after.
Suggestion for the design:
|
const useClientIdAsSubClaimForAppTokensEle: MutableRefObject<HTMLElement> = useRef<HTMLElement>(); | ||
const omitUsernameInIntrospectionRespForAppTokensEle: MutableRefObject<HTMLElement> = useRef<HTMLElement>(); |
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.
const useClientIdAsSubClaimForAppTokensEle: MutableRefObject<HTMLElement> = useRef<HTMLElement>(); | |
const omitUsernameInIntrospectionRespForAppTokensEle: MutableRefObject<HTMLElement> = useRef<HTMLElement>(); | |
const useClientIdAsSubClaimForAppTokensElement: MutableRefObject<HTMLElement> = useRef<HTMLElement>(); | |
const omitUsernameInIntrospectionRespForAppTokensElement: MutableRefObject<HTMLElement> = useRef<HTMLElement>(); |
<Trans | ||
i18nKey={ t("actions:fields.authentication.info.message") } | ||
> | ||
You currently using an outdated behavior for application tokens. |
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.
You currently using an outdated behavior for application tokens. | |
You are currently using an outdated behavior for application tokens. |
<Trans | ||
i18nKey={ t("actions:fields.authentication.info.message") } | ||
> | ||
You currently using an outdated behavior for application tokens. |
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.
Using you
in UI instructions is generally not recommended. Hope we can get the text reviewed with the doc team.
<li> | ||
<strong>Client Application Changes:</strong> | ||
<p>Update your client application to no longer use the | ||
<code>sub</code> claim to refer to the application |
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.
claim
is too technical for an average user. we can use attribute
instead.
🦋 Changeset detectedThe changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. |
<Trans | ||
i18nKey={ t("actions:fields.authentication.info.message") } | ||
> | ||
You are currently using an outdated behavior for application tokens. |
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.
Better if we can get the text reviewed by the doc team?
This will track from #6813 |
Purpose
This PR will add a Legacy Application token sention to maintain the below configs.
The initial UI design is as follows.
Please feel free to make suggestions for the design.
Related Issues
Checklist
Security checks