fathom/commands/users.go

21 lines
462 B
Go
Raw Normal View History

package commands
2016-12-11 13:50:01 +00:00
import (
"fmt"
2016-12-11 13:50:01 +00:00
"github.com/dannyvankooten/ana/db"
"github.com/dannyvankooten/ana/models"
"golang.org/x/crypto/bcrypt"
)
// Register creates a new user with the given email & password
func Register(email string, password string) {
hash, _ := bcrypt.GenerateFromPassword([]byte(password), 10)
2016-12-11 13:50:01 +00:00
user := models.User{
Email: email,
2016-12-11 13:50:01 +00:00
Password: string(hash),
}
user.Save(db.Conn)
fmt.Printf("User %s #%d created.\n", email, user.ID)
}