brightcontent-core 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15ccf70f8a55ca561620e15e8eec3cd90b775e38
|
4
|
+
data.tar.gz: 3b42b987a2fb5062801df59e4331bfebccd8c672
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1119176ccda99c90fa492652167d41640c17437085b9a72323a0958e6c21b18451e5519f80e976d7e8df3505123b1efc6b32e33f6c8f7740115451379f886cdc
|
7
|
+
data.tar.gz: 33f7cfeb6846bac7342d20bf9aad1ee3314e42dad83cf03fbdc7ae1bd28d1fd4d4aef569b0c3cf74e381ca506a917e89eea79cbfbf551e3dab0101709a4f3ce6
|
@@ -9,8 +9,8 @@ module Brightcontent
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def create
|
12
|
-
user = Brightcontent.user_model.
|
13
|
-
if user
|
12
|
+
user = Brightcontent.user_model.authenticate(params[:email], params[:password])
|
13
|
+
if user
|
14
14
|
session[:brightcontent_user_id] = user.id
|
15
15
|
redirect_to root_url
|
16
16
|
else
|
@@ -20,7 +20,7 @@ Brightcontent.setup do |config|
|
|
20
20
|
|
21
21
|
# Brightcontent provides its own user model: AdminUser. This is used by
|
22
22
|
# default. You can specify a custom user model as string or class.
|
23
|
-
# It has to implement an authenticate method.
|
23
|
+
# It has to implement an `authenticate` class method.
|
24
24
|
# config.user_model = "Brightcontent::AdminUser"
|
25
25
|
|
26
26
|
# brightcontent-pages provides a Brightcontent::Page model which is used
|