Lift with db4o User model
suppose you have a Lift + db4o开发者_如何学Go project... How do you define User model? Should I extend MetaMegaProtoUser?
Thanks in advance, Etam.
Yes, you have to Extend the MetaMegaProtoUser:
class User extends MetaMegaProtoUser[User] {
...
}
It handles all the stuff related to user registration, password change etc..
精彩评论