Skip to content

Commit 8c4149b

Browse files
Merge pull request #79 from ManishNarayan/manishn/add_custom_field_values
add custom field value model
2 parents ddb0714 + d580e1c commit 8c4149b

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
lockstep_rails (0.3.86)
4+
lockstep_rails (0.3.87)
55
rails
66

77
GEM

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ The gem is available as open source under the terms of the [MIT License](https:/
5454
- Lockstep::Attachment
5555
- Lockstep::Connection
5656
- Lockstep::Contact
57+
- Lockstep::CustomFieldValue
5758
- Lockstep::CustomerSummary
5859
- Lockstep::CompanyMagicLinkSummary
5960
- Lockstep::FeatureFlag
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class Lockstep::CustomFieldValue < Lockstep::ApiRecord
2+
self.model_name_uri = 'v1/CustomFieldValues'
3+
self.id_ref = 'custom_field_definition_id'
4+
load_schema(Schema::CustomFieldValue)
5+
end

lib/lockstep_rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module LockstepRails
4-
VERSION = '0.3.86'
4+
VERSION = '0.3.87'
55
end

0 commit comments

Comments
 (0)