mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
d7a09fb08d
This is useful for plugins that might otherwise rely on the CUSTOM_FIELD_TRUE constant.
12 lines
204 B
Ruby
12 lines
204 B
Ruby
# frozen_string_literal: true
|
|
|
|
module CustomField
|
|
extend ActiveSupport::Concern
|
|
|
|
class_methods do
|
|
def true_fields
|
|
where(value: HasCustomFields::Helpers::CUSTOM_FIELD_TRUE)
|
|
end
|
|
end
|
|
end
|