Skip to content
Snippets Groups Projects
Commit 2674aa54 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

Merge branch 'f-server-120' into 'dev'

F server 120

See merge request caosdb/caosdb-server!79
parents b5e10adf cb4e837f
No related branches found
No related tags found
1 merge request!21Release v0.4.0
Pipeline #5219 failed
......@@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
* #120 - Editing entities that were created with a no longer existing user
leads to a server error.
* #31 - Queries with keywords in the path (e.g. `... STORED AT 0in.txt`)
* #116 - Queries `FIND [ANY VERSION OF] *` and `FIND [ANY VERSION OF] ENTITY`.
......
......@@ -79,8 +79,18 @@ public class UserSources extends HashMap<String, UserSource> {
private static UserSources instance = new UserSources();
/**
* Check whether a user exists.
*
* @param principal - principal of the user.
* @return true iff the user identified by the given {@link Principal} exists.
*/
public static boolean isUserExisting(final Principal principal) {
return instance.get(principal.getRealm()).isUserExisting(principal.getUsername());
UserSource userSource = instance.get(principal.getRealm());
if (userSource != null) {
return userSource.isUserExisting(principal.getUsername());
}
return false;
}
private UserSources() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment