Vote #78948
未完了Key/value-pair custom field type not available to all customisable contents
0%
説明
The key/value-pair custom field type is currently limited to the same customisable contents as User and Version custom fields. For the key/value-pair custom field type this limitation is not necessary as the key/value-pairs are not project dependant.
The following patch removes the limitation inherited from the @RecordList@ in the @EnumerationFormat@.
--- a/lib/redmine/field_format.rb
+++ b/lib/redmine/field_format.rb
@@ -723,6 +723,8 @@ module Redmine
end
class EnumerationFormat < RecordList
+ self.customized_class_names = nil
+
add 'enumeration'
self.form_partial = 'custom_fields/formats/enumeration'
Another possibility would be to move the limitation from the parent class @RecordList@ to the child classes that need it (@UserFormat@, @VersionFormat@), but that would mean that other existing subclasses (e.g. from plugins) would need to be updated if they rely on this limitation.
journals
--------------------------------------------------------------------------------
Admin Redmine さんが3年以上前に更新
- カテゴリ を Custom fields_14 にセット
- 対象バージョン を Candidate for next major release_32 にセット