arkaan 1.2.0 → 1.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 +4 -4
- data/lib/arkaan/authentication/session.rb +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b77b147e1e1e45a725b319bd821485c1fd84a6e
|
|
4
|
+
data.tar.gz: 29013510f2588c75432c61ca845b372ac2e5737c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 68750dcc455d7f4ec7125c84447e451c29034f892fd97c066e90808574915444c7c4cc9cd656a9c55e23a3318b32929b69e9869e0b242944c6f431a01b1d3fce
|
|
7
|
+
data.tar.gz: dcfb72041acf5b265b6d1956b78f46649dac0e95883ccd44e560e96bf83675e3664baa2cbe91b0c6b98ec832d90086f8764eaaf6b62839d3df10c790c2390a95
|
|
@@ -11,6 +11,9 @@ module Arkaan
|
|
|
11
11
|
# @!attribute [rw] token
|
|
12
12
|
# @return [String] the unique token for this session, used to identify it and be sure the user is connected on this application.
|
|
13
13
|
field :token, type: String
|
|
14
|
+
# @!attribute [rw] websocket_id
|
|
15
|
+
# @return [String] the ID of the websocket on which the session is connected. It's not an association because instances are embedded.
|
|
16
|
+
field :websocket_id, type: String, default: ''
|
|
14
17
|
|
|
15
18
|
# @!attribute [rw] account
|
|
16
19
|
# @return [Arkaan::Account] the account connected to the application.
|