about summary refs log tree commit diff
path: root/db/seeds.rb
blob: c01e83f1d390202bd7b3af15c1866b9506e675cb (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

Chewy.strategy(:mastodon) do
  Dir[Rails.root.join('db', 'seeds', '*.rb')].sort.each do |seed|
    load seed
  end
end