diff options
author | Philip Arndt <git@p.arndt.io> | 2015-08-10 12:05:05 +1200 |
---|---|---|
committer | Philip Arndt <git@p.arndt.io> | 2015-08-10 12:05:05 +1200 |
commit | cfcfcfcb2a567461da69dedcfdeb0dd3e0207b18 (patch) | |
tree | 90e7bb623e7101f6f51a6af078fc0d6193c6f46b /lib | |
parent | d84600385bcc486241aad4e519164bda62064218 (diff) | |
download | refinerycms-blog-cfcfcfcb2a567461da69dedcfdeb0dd3e0207b18.tar.gz refinerycms-blog-cfcfcfcb2a567461da69dedcfdeb0dd3e0207b18.tar.bz2 refinerycms-blog-cfcfcfcb2a567461da69dedcfdeb0dd3e0207b18.zip |
Default to Refinery::Authentication::Devise::User
This will need to be better addressed in #446 but.. it stops the errors.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/refinery/blog/configuration.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/refinery/blog/configuration.rb b/lib/refinery/blog/configuration.rb index 6198cb2..9b4b5dc 100644 --- a/lib/refinery/blog/configuration.rb +++ b/lib/refinery/blog/configuration.rb @@ -26,7 +26,7 @@ module Refinery end def user_class - class_name = @@user_class_name || 'Refinery::User' + class_name = @@user_class_name || "Refinery::Authentication::Devise::User" begin Object.const_get(class_name) rescue NameError |