Token Based Authentication #30

Merged
kske merged 6 commits from f/token-based-authentication into develop 2020-09-19 14:31:02 +02:00
1 changed files with 3 additions and 0 deletions
Showing only changes of commit cb2a3a6540 - Show all commits

View File

@ -23,4 +23,7 @@ public class NewAuthToken extends Event<String> {
public NewAuthToken(String token) {
super(token);
}
@Override
public String toString() { return "NewAuthToken"; }
}