lockstep_rails 0.3.60 → 0.3.62
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/app/concepts/lockstep/api_record.rb +4 -1
- data/app/models/lockstep/magic_link.rb +1 -1
- data/lib/lockstep_rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9be38b7152f518344bb64998dc99c2ffbf4e0cc2bcf8bdbede10db7bf0a753ca
|
4
|
+
data.tar.gz: 5451642d8f5a986a6a568868b85734222a2b241e2f7f6d226a4652cedef7f8cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb9b19ccbba26424a2eb571e622f73e8dba2f1cf913969757af232577d1449f88f031e75622a3a73c1916747988e357937af97ea77f48bf90207ff58e91fa229
|
7
|
+
data.tar.gz: 939add76110fce864a6fa02758e34b95124ef5db2eee221498d66266b56a11b8b9d21425a307a76cbb010ec7b9b653d401e4cf6cbfec974c94d6dd6ee06107cd
|
@@ -423,9 +423,12 @@ module Lockstep
|
|
423
423
|
# raise StandardError.new("delete_all doesn't exist. Did you mean destroy_all?")
|
424
424
|
# end
|
425
425
|
|
426
|
-
def self.bulk_import(new_objects, slice_size =
|
426
|
+
def self.bulk_import(new_objects, slice_size = nil)
|
427
427
|
return [] if new_objects.blank?
|
428
428
|
|
429
|
+
# default slice size to 1000, if its blank or if its 0
|
430
|
+
slice_size = 1000 if slice_size.blank? || slice_size.to_i == 0
|
431
|
+
|
429
432
|
# Batch saves seem to fail if they're too big. We'll slice it up into multiple posts if they are.
|
430
433
|
new_objects.each_slice(slice_size) do |objects|
|
431
434
|
# attributes_for_saving
|
@@ -1,7 +1,7 @@
|
|
1
1
|
class Lockstep::MagicLink < Lockstep::ApiRecord
|
2
2
|
self.model_name_uri = "v1/useraccounts/magic-links"
|
3
3
|
self.id_ref = "magicLinkId"
|
4
|
-
self.query_path =
|
4
|
+
self.query_path = nil
|
5
5
|
|
6
6
|
def self.generate(email_id, expiry, app_id, user_role, company_id, accounting_profile_id)
|
7
7
|
body = { email: email_id,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lockstep_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.62
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vivek AG
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|