remove category enum (#97)

* remove category enum

* priority inversion, 0 is always first

* set marketplace name default to something more obviously wrong.
This commit is contained in:
Keagan McClelland
2022-03-01 16:39:13 -07:00
committed by GitHub
parent 75663b65e4
commit cdadae707c
7 changed files with 9 additions and 59 deletions

View File

@@ -95,7 +95,7 @@ instance FromJSON AppSettings where
let sslCertLocation = sslPath </> "certificate.pem"
let registryVersion = fromJust . parseMaybe parseJSON . String . toS . showVersion $ version
marketplaceName <- o .:? "marketplace-name" .!= "Start9 Embassy Marketplace"
marketplaceName <- o .: "marketplace-name"
return AppSettings { .. }