impress/config
Emi Matchu d66f81c96b Remove support for old "Nebula (fake)" April Fools color
This hasn't worked for a while anyway! Let's remove the bits of code
where we deal with it, and the database field that signals it. (We also
make a corresponding change in Impress 2020, so it doesn't crash trying
to query based on the `prank` column.)

I also ran this snippet to clear out all the Nebula stuff in the db:

```rb
Color.transaction do
	nebula = Color.where(prank: true).find_by_name("Nebula")
	nebula.pet_types.includes(pet_states: :swf_assets).each do |pet_type|
		pet_type.pet_states.each do |pet_state|
			pet_state.parent_swf_asset_relationships.each do |psa|
				psa.swf_asset.destroy!
				psa.destroy!
			end
			pet_state.destroy!
		end
		pet_type.destroy!
	end
	nebula.destroy!
end
```
2024-09-27 19:38:53 -07:00
..
environments Remove the now-unused neopass_access_secret config setting 2024-04-12 07:26:27 -07:00
initializers Move JS libraries to vendor/javascript 2024-09-13 21:16:46 -07:00
locales Remove support for old "Nebula (fake)" April Fools color 2024-09-27 19:38:53 -07:00
application.rb Explicitly disable the unused ActionCable Rails feature 2024-09-20 13:14:00 -07:00
boot.rb Upgrade to Rails 7.0.6 2023-10-23 19:05:07 -07:00
credentials.yml.enc Remove the now-unused neopass_access_secret config setting 2024-04-12 07:26:27 -07:00
database.yml Improve Unicode support, emojis don't crash us anymore lol! 2024-02-28 18:54:27 -08:00
environment.rb Upgrade to Rails 6.1.7.4 2023-10-23 19:05:07 -07:00
routes.rb Remove "About NeoPass" page, now that it's on the blog 2024-09-20 18:43:38 -07:00