vote up 1 vote down star

I'm following the Lift tutorial and it is referencing to a User object. It doesn't say where it's coming from. I also could not find it in the API. Does anyone know what I have to import to get it?

Here's the sample code with a FK to User in the model:

object owner extends MappedLongForeignKey(this, User)
flag

It's linked in my original question, here it is again more explicitly put: liftweb.net/docs/getting_started/… – Thierry Lam Sep 19 at 17:43

1 Answer

vote up 1 vote down check

The User object will be part of your source. Assuming that you've done the com.liftworkshop project, it will be in todo/src/main/scala/com/liftworkshop/model/User.scala and can be imported from "com.liftworkshop.model.User".

The default User class and object are built from the MetaProtoUser and MetaMegaProtoUser traits in net.liftweb.mapper.

link|flag
I noticed that User defined in the Lift book from Google book. – Thierry Lam Sep 19 at 19:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.