Module: KirguduBase::Models::Scopes::WithIsHtml
- Defined in:
- app/helpers/kirgudu_base/models/scopes.rb
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
92 93 94 95 96 97 |
# File 'app/helpers/kirgudu_base/models/scopes.rb', line 92 def self.included(base) base.scope :with_is_html, lambda { |value| base.where(is_html: value) if value } end |