Skip to content
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