Antarr Byrd
Antarr Byrd

Reputation: 26061

Users and User Session

I'm looking @ my dependencies model and my users_session class is the only one that has no dependencies. Should there be any for it?

Upvotes: 0

Views: 92

Answers (1)

Peter
Peter

Reputation: 132157

This is how my UserSession class looks in an app successfully using authlogic:

class UserSession < Authlogic::Session::Base
end

and no, it doesn't contain any explicit relationships. The logic is instead contained in Authlogic::Session::Base. You don't need to worry about any relationships.

Upvotes: 1

Related Questions