Skip to content

Commit 57fef5b

Browse files
committed
fix: description_template_enabled flag
1 parent 210f160 commit 57fef5b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-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-
pager_tree-integrations (1.0.1)
4+
pager_tree-integrations (1.1.0)
55
rails (>= 7.0.1)
66

77
GEM

app/models/pager_tree/integrations/integration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Integration < PagerTree::Integrations.integration_parent_class.constantize
99
{key: :title_template, type: :string, default: nil},
1010
{key: :title_template_enabled, type: :boolean, default: false},
1111
{key: :description_template, type: :string, default: nil},
12-
{key: :description_template_enabled, type: :string, default: false}
12+
{key: :description_template_enabled, type: :boolean, default: false}
1313
]
1414
store_accessor :options, *GENERIC_OPTIONS.map { |x| x[:key] }.map(&:to_s), prefix: "option"
1515

0 commit comments

Comments
 (0)