authrocket 3.2.1 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3a67bcdd15b98343f85c8e8383de3dc49ff18ea1bad87740fe53d28f1d51231
4
- data.tar.gz: 778f5ed34745f9f58797215d6b85044922a3484b59bd9f8e7ff431281fd4ae53
3
+ metadata.gz: 496c2639a6c1ce3fbee2aa2630cad8fda1d9e2d4b6dc599b1e67cbaa3aa9e73b
4
+ data.tar.gz: 4b60926eeb42fe5c1a7676a40b144f097fd117dc6db5083e5c0990347d9e09cd
5
5
  SHA512:
6
- metadata.gz: 0fb6ffe5a89fa6e78ca750e25f932ded0af82e71e3622434bbcd013ff0c72c9b87f39a8fe66568a5a3cf81d2f6f0116b72258c6bacb7319f8b88a0de02405b62
7
- data.tar.gz: e0d284409d955f1c9b4ca225fd364c0770b52f7ea115119673a4586509440faf792cbe705ca6fc4f8e25d463e48d7728e97284f019054ef832e7edd2ee38ff81
6
+ metadata.gz: '08b37f9964636332dd7154a03a5d37074cf7e766dfc48f9add8e96e114ec8a518b9a1324e74a1063931d2e40b4fd07e146675e0f03f28ac5914bf48372b5efd5'
7
+ data.tar.gz: 4269068e638a0451ca3af856101adf6d90660c0a68a8772e5b5625f3ebf1ec50b56fa8c2e2d69917086cc85f115bfc0f7afce708f580f547aaf837009862f348
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ #### 3.3.0
2
+
3
+ - Update Invitation, Hook, Realm, User
4
+
1
5
  #### 3.2.1
2
6
 
3
7
  - Update AuthProvider
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2020 Notioneer, Inc.
1
+ Copyright (c) 2014-2021 Notioneer, Inc.
2
2
 
3
3
  MIT License
4
4
 
@@ -1,3 +1,3 @@
1
1
  module AuthRocket
2
- VERSION = '3.2.1'
2
+ VERSION = '3.3.0'
3
3
  end
@@ -7,7 +7,8 @@ module AuthRocket
7
7
 
8
8
  attr :accumulate, :delay, :event_type, :hook_type, :state
9
9
  attr :destination
10
- attr :email_renderer, :email_subject, :email_template, :email_to
10
+ attr :email_renderers, :email_subjects, :email_templates, :email_to, :locales
11
+ attr :current_locales # readonly
11
12
  attr :description, :list_id, :name, :on_create, :visibility
12
13
 
13
14
 
@@ -7,7 +7,7 @@ module AuthRocket
7
7
  belongs_to :realm
8
8
  has_many :events
9
9
 
10
- attr :email, :invitation_type, :token
10
+ attr :email, :invitation_type, :locale, :token
11
11
  attr :permissions
12
12
  attr_datetime :created_at, :expires_at, :invited_at
13
13
 
@@ -16,6 +16,7 @@ module AuthRocket
16
16
  has_many :users
17
17
 
18
18
  attr :custom, :environment, :name, :public_name, :state
19
+ attr :available_locales, :default_locale
19
20
  attr :email_verification, :org_mode, :signup
20
21
  attr :name_field, :org_name_field, :password_field, :username_field
21
22
  attr :branding, :color_1, :logo, :logo_icon, :privacy_policy, :stylesheet, :terms_of_service
@@ -9,7 +9,7 @@ module AuthRocket
9
9
  has_many :memberships
10
10
  has_many :sessions
11
11
 
12
- attr :custom, :email, :email_verification, :first_name, :last_name, :name
12
+ attr :custom, :email, :email_verification, :first_name, :last_name, :locale, :name
13
13
  attr :reference, :state, :username
14
14
  attr :password, :password_confirmation # writeonly
15
15
  attr_datetime :created_at, :last_login_at
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authrocket
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.1
4
+ version: 3.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - AuthRocket Team
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-03 00:00:00.000000000 Z
11
+ date: 2021-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -130,7 +130,7 @@ homepage: https://authrocket.com/
130
130
  licenses:
131
131
  - MIT
132
132
  metadata: {}
133
- post_install_message:
133
+ post_install_message:
134
134
  rdoc_options: []
135
135
  require_paths:
136
136
  - lib
@@ -145,8 +145,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
145
145
  - !ruby/object:Gem::Version
146
146
  version: '0'
147
147
  requirements: []
148
- rubygems_version: 3.0.8
149
- signing_key:
148
+ rubygems_version: 3.0.9
149
+ signing_key:
150
150
  specification_version: 4
151
151
  summary: AuthRocket client for Ruby
152
152
  test_files: []