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

Dbeaver/pro#2552 [TE] deleted profiles appear again after app launch #2429

Merged
merged 6 commits into from
Mar 18, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,11 @@ public void updateAuthProfile(DBAAuthProfile profile) {
dataSourceRegistry.updateAuthProfile(profile);
}

@Override
public void setAuthProfiles(Collection<DBAAuthProfile> profiles) {
ShadelessFox marked this conversation as resolved.
Show resolved Hide resolved
dataSourceRegistry.setAuthProfiles(profiles);
}

@Override
public void removeAuthProfile(DBAAuthProfile profile) {
dataSourceRegistry.removeAuthProfile(profile);
Expand Down
Loading