Skip to content

Commit f34e8fe

Browse files
authored
Merge pull request #5816 from sanger/hotfix/add-missing-allowed-types
[hotfix] - Add missing permitted types
2 parents 5c6832f + cdedec3 commit f34e8fe

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.release-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.94.1
1+
14.94.2

app/models/submission/request_options_behaviour.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ def self.load(hash_yaml)
1313
ActiveSupport::HashWithIndifferentAccess,
1414
ActiveSupport::TimeWithZone,
1515
ActiveSupport::TimeZone,
16+
Symbol,
1617
Time
1718
])
1819
end

app/models/submission_template.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ class SubmissionTemplate < ApplicationRecord # rubocop:todo Metrics/ClassLength
1111

1212
serialize :submission_parameters, coder: YAML, yaml: {
1313
permitted_classes: [
14-
FieldInfo
14+
FieldInfo,
15+
Time
1516
]
1617
}
1718

0 commit comments

Comments
 (0)