Skip to content

Commit

Permalink
Make user 1 also get the "authenticated user" role.
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-vessey committed Nov 1, 2013
1 parent 2714b02 commit 562667b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,8 @@ protected void findUser(String userid, String password) {
attributeValues.add("anonymous");
} else if (numericId == 1) {
attributeValues.add("administrator");
} else {
}
if (numericId > 0) {
attributeValues.add("authenticated user");
}
successLogin = true;
Expand Down

0 comments on commit 562667b

Please sign in to comment.