3

suppose you have a Lift + db4o project... How do you define User model? Should I extend MetaMegaProtoUser?

Thanks in advance, Etam.

Etam
  • 4,553
  • 10
  • 40
  • 60

1 Answers1

2

Yes, you have to Extend the MetaMegaProtoUser:

class User extends MetaMegaProtoUser[User] { 
...
}

It handles all the stuff related to user registration, password change etc..

onof
  • 17,167
  • 7
  • 49
  • 85