Method: Helpdesk::Faq.collection

Defined in:
app/models/helpdesk/faq.rb

.collectionObject



33
34
35
36
37
38
39
40
# File 'app/models/helpdesk/faq.rb', line 33

def self.collection
  arr = []
  roots.each do |faq|
    arr << faq
    arr << faq.descendants
  end
  return arr.flatten
end