Fix db/seeds.rb (#9738)
Add "agreement: true" to avoid: > ActiveRecord::RecordInvalid: Validation failed: Agreement must be accepted
This commit is contained in:
		
							parent
							
								
									4c99d23df8
								
							
						
					
					
						commit
						b6db4feb13
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -4,5 +4,5 @@ if Rails.env.development? | ||||||
|   domain = ENV['LOCAL_DOMAIN'] || Rails.configuration.x.local_domain |   domain = ENV['LOCAL_DOMAIN'] || Rails.configuration.x.local_domain | ||||||
|   admin  = Account.where(username: 'admin').first_or_initialize(username: 'admin') |   admin  = Account.where(username: 'admin').first_or_initialize(username: 'admin') | ||||||
|   admin.save(validate: false) |   admin.save(validate: false) | ||||||
|   User.where(email: "admin@#{domain}").first_or_initialize(email: "admin@#{domain}", password: 'mastodonadmin', password_confirmation: 'mastodonadmin', confirmed_at: Time.now.utc, admin: true, account: admin).save! |   User.where(email: "admin@#{domain}").first_or_initialize(email: "admin@#{domain}", password: 'mastodonadmin', password_confirmation: 'mastodonadmin', confirmed_at: Time.now.utc, admin: true, account: admin, agreement: true).save! | ||||||
| end | end | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue