8000 Add feedback when user sync is triggered by Foorcee · Pull Request #38716 · keycloak/keycloak · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add feedback when user sync is triggered #38716

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

Merged
merged 1 commit into from
Apr 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3474,4 +3474,5 @@ enableDebugSMTP=Enable Debug SMTP
signatureMaxExp=Max expiration
signatureMaxExpHelp=Maximum expiration allowed for the JWT. Tokens need to be generated right before authentication. After this period will be considered invalid because they are too old. If undefined the default value is 60 seconds.
fileNameDialogTitle=Save as
fileName=File name
fileName=File name
syncUsersStarted=User sync has started.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export const ExtendedHeader = ({
const syncChangedUsers = async () => {
try {
if (id) {
addAlert(t("syncUsersStarted"), AlertVariant.info);
const response = await adminClient.userStorageProvider.sync({
id: id,
action: "triggerChangedUsersSync",
Expand All @@ -90,6 +91,7 @@ export const ExtendedHeader = ({
const syncAllUsers = async () => {
try {
if (id) {
addAlert(t("syncUsersStarted"), AlertVariant.info);
const response = await adminClient.userStorageProvider.sync({
id: id,
action: "triggerFullSync",
Expand Down
Loading
0