aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Arndt <git@p.arndt.io>2015-08-10 12:05:05 +1200
committerPhilip Arndt <git@p.arndt.io>2015-08-10 12:05:05 +1200
commitcfcfcfcb2a567461da69dedcfdeb0dd3e0207b18 (patch)
tree90e7bb623e7101f6f51a6af078fc0d6193c6f46b
parentd84600385bcc486241aad4e519164bda62064218 (diff)
downloadrefinerycms-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.
-rw-r--r--lib/refinery/blog/configuration.rb2
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