Fix admin account created by mastodon:setup not being auto-approved (#29379)

This commit is contained in:
Claire 2024-02-23 20:04:57 +01:00
parent f784213c64
commit 7af69f5cf5

View file

@ -515,6 +515,7 @@ namespace :mastodon do
owner_role = UserRole.find_by(name: 'Owner')
user = User.new(email: email, password: password, confirmed_at: Time.now.utc, account_attributes: { username: username }, bypass_invite_request_check: true, role: owner_role)
user.save(validate: false)
user.approve!
Setting.site_contact_username = username