Skip to content

Commit

Permalink
Introduce the treasurer role
Browse files Browse the repository at this point in the history
This role is given to people who are responsible for keeping the money and
accounting. Functions related to setting up accounting and actual booking
are limited to these role.
  • Loading branch information
penguineer committed Jul 24, 2024
1 parent 2590ebc commit b5f65d9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
public enum SystemRole {
ADMINISTRATOR("administrator", "Administrator"),
MEMBER("member", "Gartenfreund"),
FRIEND("friend", "Gartenfreund-Freund");
FRIEND("friend", "Gartenfreund-Freund"),
TREASURER("treasurer", "Geldhüter");

private final String handle;
private final String displayName;
Expand Down

0 comments on commit b5f65d9

Please sign in to comment.