authrocket 3.2.1 → 3.3.0
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/CHANGELOG.md +4 -0
- data/LICENSE +1 -1
- data/lib/authrocket/api/version.rb +1 -1
- data/lib/authrocket/hook.rb +2 -1
- data/lib/authrocket/invitation.rb +1 -1
- data/lib/authrocket/realm.rb +1 -0
- data/lib/authrocket/user.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 496c2639a6c1ce3fbee2aa2630cad8fda1d9e2d4b6dc599b1e67cbaa3aa9e73b
|
|
4
|
+
data.tar.gz: 4b60926eeb42fe5c1a7676a40b144f097fd117dc6db5083e5c0990347d9e09cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '08b37f9964636332dd7154a03a5d37074cf7e766dfc48f9add8e96e114ec8a518b9a1324e74a1063931d2e40b4fd07e146675e0f03f28ac5914bf48372b5efd5'
|
|
7
|
+
data.tar.gz: 4269068e638a0451ca3af856101adf6d90660c0a68a8772e5b5625f3ebf1ec50b56fa8c2e2d69917086cc85f115bfc0f7afce708f580f547aaf837009862f348
|
data/CHANGELOG.md
CHANGED
data/LICENSE
CHANGED
data/lib/authrocket/hook.rb
CHANGED
|
@@ -7,7 +7,8 @@ module AuthRocket
|
|
|
7
7
|
|
|
8
8
|
attr :accumulate, :delay, :event_type, :hook_type, :state
|
|
9
9
|
attr :destination
|
|
10
|
-
attr :
|
|
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
|
|
data/lib/authrocket/realm.rb
CHANGED
|
@@ -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
|
data/lib/authrocket/user.rb
CHANGED
|
@@ -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.
|
|
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:
|
|
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.
|
|
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: []
|