Skip to content

Commit

Permalink
add custom field value model
Browse files Browse the repository at this point in the history
  • Loading branch information
ManishNarayan committed Sep 16, 2024
1 parent ddb0714 commit d580e1c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
lockstep_rails (0.3.86)
lockstep_rails (0.3.87)
rails

GEM
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ The gem is available as open source under the terms of the [MIT License](https:/
- Lockstep::Attachment
- Lockstep::Connection
- Lockstep::Contact
- Lockstep::CustomFieldValue
- Lockstep::CustomerSummary
- Lockstep::CompanyMagicLinkSummary
- Lockstep::FeatureFlag
Expand Down
5 changes: 5 additions & 0 deletions app/models/lockstep/custom_field_value.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class Lockstep::CustomFieldValue < Lockstep::ApiRecord
self.model_name_uri = 'v1/CustomFieldValues'
self.id_ref = 'custom_field_definition_id'
load_schema(Schema::CustomFieldValue)
end
2 changes: 1 addition & 1 deletion lib/lockstep_rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module LockstepRails
VERSION = '0.3.86'
VERSION = '0.3.87'
end

0 comments on commit d580e1c

Please sign in to comment.