auth-lh 0.14.1 → 0.14.2

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: a896c2bd2c364a537b55b63dc2f2910afcaa1c1e
4
- data.tar.gz: d19c4f9b1d3bfe4e35f899caa062d3cd854f608f
3
+ metadata.gz: 4b880f5210cf7d68c2f01e144179eca1b6787b0f
4
+ data.tar.gz: 28a141c9c7d99df36fbac6c225302d756fae3a3c
5
5
  SHA512:
6
- metadata.gz: e3e2d1e8faa058dee5034487c68afff47c810d0d2dc0d9dc04dcc44d25b001ad25b4283f933897fdd40cf23f42ea197e67ed37e4aba15e32b5e2dd724f41abe5
7
- data.tar.gz: 7f89345fef633277fb164b72402ce5cdb5c11ec23b1732da2d4448ef08f7e67b76d14578f38f6754a0c2f1c08222d447401f82593328523262d3fdaee4dabcde
6
+ metadata.gz: 48ee9c86f4a26f39f040dca15ce0b7b6fd87c98e9de4b836d0839264b50b20596e1148a5b26244e245cca11789daa58f3443d39f977cd34a36bcc236c05b783c
7
+ data.tar.gz: 718212b5cd518e619c34a50dc61c49e4e4828266d3567e415ef291ab5088219192ade431503d46fc4878c7ffd4a5958a78722af2dcabd82dc0ebe3a886f720c3
data/CHANGELOG.md CHANGED
@@ -181,3 +181,7 @@
181
181
  ## v0.14.1
182
182
 
183
183
  * Added attendance_mode attribute.
184
+
185
+ ## v0.14.2
186
+
187
+ * Removed no longer used has_attendance_control attribute.
@@ -1,5 +1,5 @@
1
1
  module Auth
2
2
  module Lh
3
- VERSION = "0.14.1"
3
+ VERSION = "0.14.2"
4
4
  end
5
5
  end
data/lib/auth_lh/user.rb CHANGED
@@ -2,8 +2,8 @@ module AuthLh
2
2
  class User
3
3
  attr_accessor :email, :jabber, :first_name, :last_name, :login,
4
4
  :shop_code, :shop_id, :shop_name, :enabled, :role_codes,
5
- :password_expired, :has_attendance_control, :has_remote_desktop,
6
- :attendance_mode, :fingerprint_from, :fingerprint_to, :external_apps
5
+ :password_expired, :has_remote_desktop, :attendance_mode,
6
+ :fingerprint_from, :fingerprint_to, :external_apps
7
7
 
8
8
  def initialize(attributes={})
9
9
  attributes.each do |k,v|
@@ -1,10 +1,11 @@
1
1
  module AuthLh
2
2
  class UserExtended
3
- attr_accessor :email, :jabber, :name, :login, :password_digest,
4
- :password_expired, :enabled, :shop_code, :allow_remote_access,
5
- :session_timeout, :only_working_time, :allow_multiple_sessions,
6
- :working_time, :has_attendance_control, :has_remote_desktop,
7
- :fingerprint_from, :fingerprint_to, :role_codes, :app_codes
3
+ attr_accessor :email, :jabber, :first_name, :last_name, :login,
4
+ :password_digest, :password_expired, :enabled, :shop_code,
5
+ :allow_remote_access, :session_timeout, :only_working_time,
6
+ :allow_multiple_sessions, :working_time, :has_remote_desktop,
7
+ :fingerprint_from, :fingerprint_to, :attendance_mode,
8
+ :role_codes, :app_codes
8
9
 
9
10
  def initialize(attributes={})
10
11
  attributes.each do |k,v|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auth-lh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.1
4
+ version: 0.14.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matias Hick