openid_dm_store 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/nonce.rb +4 -4
- metadata +1 -1
data/lib/nonce.rb
CHANGED
@@ -4,9 +4,9 @@ module OpenIDDataMapper
|
|
4
4
|
include DataMapper::Resource
|
5
5
|
|
6
6
|
property :id, Serial
|
7
|
-
property :salt, String, :
|
8
|
-
property :server_url, String, :
|
9
|
-
property :timestamp, Integer, :
|
7
|
+
property :salt, String, :required => true
|
8
|
+
property :server_url, String, :required => true
|
9
|
+
property :timestamp, Integer, :required => true
|
10
10
|
|
11
11
|
def self.default_storage_name
|
12
12
|
"OpenIdNonce"
|
@@ -14,4 +14,4 @@ module OpenIDDataMapper
|
|
14
14
|
|
15
15
|
end
|
16
16
|
|
17
|
-
end
|
17
|
+
end
|