Skip to content

Commit

Permalink
reformat messages
Browse files Browse the repository at this point in the history
  • Loading branch information
dprzybyl committed Oct 30, 2023
1 parent ad88c1c commit 4f0910d
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ public static String newPasswordSet(String userId) {
return "New password for user " + userId + " was set";
}

public static String authorizableExists(String authorizableId, String type) {
return "Authorizable with id: " + authorizableId + " already exists, and is a " + type;
}

public static String addingGroupToItself(String groupId) {
return "You can not add group " + groupId + " to itself";
}
Expand Down

0 comments on commit 4f0910d

Please sign in to comment.