added endpoints to see all user without any auth for testing
Some checks failed
Format / formatting (push) Successful in 5s
Build / build (push) Successful in 45s
CI / build (push) Failing after 12s
Format / formatting (pull_request) Successful in 7s

This commit is contained in:
2025-05-01 17:45:49 +02:00
parent 49e52e1826
commit 592331236e
3 changed files with 28 additions and 1 deletions

View File

@ -206,4 +206,8 @@ public class AdminApiService {
public Iterable<User> getPendingUsers() {
return this.userService.getPendingAccounts();
}
public Iterable<Administrator> getAllAdmins() {
return this.administratorService.allAdministrators();
}
}