Sha256: e25680eb65653bde013706a9cc8406a77064572cda52184bdea74ea6bb4a8f00
Contents?: true
Size: 883 Bytes
Versions: 2
Compression:
Stored size: 883 Bytes
Contents
module Notee module Helper def notees(search_txt) if search_txt.nil? # all_notees @notees = Notee::Post.where(status: 1).order(published_at: :desc) else # search_by_category_slug category_id = Notee::Category.find_by(slug: search_txt) category_id = Notee::Category.find_by(name: search_txt) unless category_id return false unless category_id @notees = Notee::Post.where(category_id: category_id, status: 1).order(published_at: :desc) end @notees end def secret_notees @notees = Notee::Post.where(status: 2).order(published_at: :desc) end def notee(search_txt) return false unless search_txt @notee = Notee::Post.find_by(id: search_txt, status: 1) @notee = Notee::Post.find_by(slug: search_txt, status: 1) unless @notee @notee end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
notee-0.3.3 | lib/notee/helper.rb |
notee-0.3.2 | lib/notee/helper.rb |