This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/fixtures/990_topics.rb

16 lines
321 B
Ruby

# 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