1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-08 17:55:59 +01:00

Complete token.stateful.Clone.

This commit is contained in:
Juliusz Chroboczek 2023-07-09 11:52:13 +02:00
parent e73aaa31d7
commit 5aff224e62

View file

@ -31,6 +31,8 @@ func (token *Stateful) Clone() *Stateful {
Permissions: append([]string(nil), token.Permissions...),
Expires: token.Expires,
NotBefore: token.NotBefore,
IssuedAt: token.IssuedAt,
IssuedBy: token.IssuedBy,
}
}