Module: KirguduBase::Models::Scopes::WithIsHtml
- Defined in:
- app/helpers/kirgudu_base/models/scopes.rb
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
118 119 120 121 122 123 124 125 |
# File 'app/helpers/kirgudu_base/models/scopes.rb', line 118 def self.included(base) base.scope :with_is_html, lambda { |value| if value base.where(is_html: value) end } end |