devise_traceable
devise_traceable copied to clipboard
Getting uninitialized constant UserTracing
I followed instructions but getting Getting uninitialized constant UserTracing on rails 3 with devise latest no other devise plugins installed. This error happens on signout and signin
I have the same Problem...
Same problem here.
I solved the problem by creating the UserTracing model
class UserTracing < ActiveRecord::Base
end
is this not being supported anymore ?
This gem is not fully implemented. You still need to add the UserTracing model and, depending on your needs, associate it with your user model.
Also, the generated migration doesn't create the IP address column, so you'll need to fix that, too.
@brink : How did you implement the IP tracing? A short code example would be really appreciated. Thanks!
I'm sorry I don't have access to that code any longer -- it was at my previous job in a repo I no longer have access to. Sorry!
What I remember was that I had to create the ip address column manually and i think create the usertracing model and add the association mappings