JujaLabs/users

Change UserRepo method to return List from DB

Closed this issue · 0 comments

List<User> findBySlackIn(List<String> slackNames);
List<User> findByUuidIn(List<UUID> uuids);

instead of
User findOneBySlack(String slackName);
User findOneByUuid(UUID uuid);

Update code and tests