mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 17:28:54 +00:00
c8d284fd3c
* Email confirmation fix * Added test for incorrect auth user confirming e-mail change
10 lines
233 B
Go
10 lines
233 B
Go
package inmem
|
|
|
|
func (ds *Datastore) PendingEmailChange(uid uint, newEmail, token string) error {
|
|
panic("deprecated")
|
|
}
|
|
|
|
func (ds *Datastore) ConfirmPendingEmailChange(uid uint, token string) (string, error) {
|
|
panic("deprecated")
|
|
}
|