discourse/db/fixtures/990_topics.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
321 B
Ruby
Raw Normal View History

# frozen_string_literal: true
if !Rails.env.test?
require 'seed_data/topics'
topics_exist = Topic.where(<<~SQL).exists?
id NOT IN (
SELECT topic_id
FROM categories
WHERE topic_id IS NOT NULL
)
SQL
SeedData::Topics.with_default_locale.create(include_welcome_topics: !topics_exist)
end