--
You received this message because you are subscribed to the Google Groups "Monologue" group.
To unsubscribe from this group and stop receiving emails from it, send an email to monologue-rb...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You need to monkey patch the Monologue::User class to use your existing users (or whatever you call it) table. This is covered very briefly in the following:
https://gist.github.com/jipiboily/776d907fc932640ac59a
However, you will need to make sure that your users table has name and password_digest fields, which is what the Monologue::User model expects.
There are a few other caveats that I encountered, such as having to store the monologue_user_id in session manually, like so:
session[:monologue_user_id] = session[:user_id]
Hope that helps!