mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 20:36:39 +08:00
9 lines
224 B
Ruby
9 lines
224 B
Ruby
# frozen_string_literal: true
|
|
|
|
Group.ensure_automatic_groups!
|
|
if g = Group.find_by(name: "trust_level_5", id: 15)
|
|
g.destroy!
|
|
end
|
|
|
|
Group.where(name: "everyone").update_all(visibility_level: Group.visibility_levels[:staff])
|