summaryrefslogtreecommitdiffhomepage
path: root/Types/Server.hs
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2016-10-06 13:54:52 -0400
committerJoey Hess <joeyh@joeyh.name>2016-10-06 13:54:52 -0400
commitb40d441c52f37584653e74fada9906cc8105c9f7 (patch)
tree737396d6ab61212cad52555c7bc99dedd167b330 /Types/Server.hs
parent54d3bfbb98958cb49399f1a7f092fa43593ef4c8 (diff)
downloadkeysafe-b40d441c52f37584653e74fada9906cc8105c9f7.tar.gz
move level from Server to Storage
This allows local storage locations to have levels too, and also get shuffled nicely. This commit was sponsored by Ethan Aubin.
Diffstat (limited to 'Types/Server.hs')
-rw-r--r--Types/Server.hs4
1 files changed, 0 insertions, 4 deletions
diff --git a/Types/Server.hs b/Types/Server.hs
index 5caf9db..9a2017d 100644
--- a/Types/Server.hs
+++ b/Types/Server.hs
@@ -27,12 +27,8 @@ newtype ServerName = ServerName { fromServerName :: String }
instance ToJSON ServerName
instance FromJSON ServerName
-data ServerLevel = Recommended | Alternate | Untrusted
- deriving (Show, Eq, Ord, Bounded, Enum)
-
data Server = Server
{ serverName :: ServerName
- , serverLevel :: ServerLevel
, serverAddress :: [ServerAddress]
-- ^ A server may have multiple addresses, or no current address.
, serverDesc :: String