registration: Hook up reg to actual accounts

This commit is contained in:
Daniel Oaks 2016-09-05 22:54:09 +10:00
parent 5269dc8776
commit e3fbdebc48
4 changed files with 29 additions and 4 deletions

View file

@ -18,5 +18,5 @@ type ClientAccount struct {
// RegisteredAt represents the time that the account was registered.
RegisteredAt time.Time
// Clients that are currently logged into this account (useful for notifications).
Clients []Client
Clients []*Client
}