fleet/server/datastore/inmem/email_changes.go
John Murphy 9465434826 Allow user to change email with confirmation (#1102)
* Change email functionality

* Code review changes for @groob

* Name change per @groob

* Code review changes per @marpaia

Also added addition non-happy path tests to satisfy concerns by @groob
2017-01-27 21:35:58 +08:00

10 lines
223 B
Go

package inmem
func (ds *Datastore) PendingEmailChange(uid uint, newEmail, token string) error {
panic("deprecated")
}
func (ds *Datastore) ConfirmPendingEmailChange(token string) (string, error) {
panic("deprecated")
}