Skip to content

Commit

Permalink
- ADD: Finalised support for access tokens generated to share with ot…
Browse files Browse the repository at this point in the history
…her people who can then access specific folders without being logged in and without these folder being public.
  • Loading branch information
sebastian-raubach committed May 25, 2020
1 parent 56b4e78 commit f393556
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/raubach/fricklweb/server/computed/AccessToken.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ public void setExpiresOn(Timestamp expiresOn)
@Override
public String toString()
{
return super.toString();
return "AccessToken{" +
"token='" + token + '\'' +
", expiresOn=" + expiresOn +
'}';
}
}

0 comments on commit f393556

Please sign in to comment.