summaryrefslogtreecommitdiff
path: root/Types
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-03-15 19:16:13 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-03-15 19:16:13 -0400
commiteabe9d8c6177318432eb81120f4d5db05898c891 (patch)
tree6fedada070d79a4afec236a63ead893bc41b04e9 /Types
parent34c604b935e6e3e40796c9132ed19d44442cb809 (diff)
add globallyAvailable to remotes
Diffstat (limited to 'Types')
-rw-r--r--Types/Remote.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Types/Remote.hs b/Types/Remote.hs
index b8c603c65..fe2260447 100644
--- a/Types/Remote.hs
+++ b/Types/Remote.hs
@@ -74,6 +74,8 @@ data RemoteA a = Remote {
localpath :: Maybe FilePath,
-- a Remote can be known to be readonly
readonly :: Bool,
+ -- a Remote can be globally available. (Ie, "in the cloud".)
+ globallyAvailable :: Bool,
-- the type of the remote
remotetype :: RemoteTypeA a
}