私はこのようにしています:
@disabled_options = []
Category.where('ancestry is NULL').each do |cat|
@disabled_options << cat.id if cat.has_children?
end
すべての親を子なしで取得するよりエレガントな方法はありますか?
私はこのようにしています:
@disabled_options = []
Category.where('ancestry is NULL').each do |cat|
@disabled_options << cat.id if cat.has_children?
end
すべての親を子なしで取得するよりエレガントな方法はありますか?