add trustExclude
This commit is contained in:
parent
3f8ce7a0c5
commit
ec337baaee
1 changed files with 5 additions and 0 deletions
|
@ -11,6 +11,7 @@ module Logs.Trust (
|
||||||
trustGet,
|
trustGet,
|
||||||
trustSet,
|
trustSet,
|
||||||
trustPartition,
|
trustPartition,
|
||||||
|
trustExclude,
|
||||||
lookupTrust,
|
lookupTrust,
|
||||||
trustMapLoad,
|
trustMapLoad,
|
||||||
trustMapRaw,
|
trustMapRaw,
|
||||||
|
@ -67,6 +68,10 @@ trustPartition level ls
|
||||||
candidates <- trustGet level
|
candidates <- trustGet level
|
||||||
return $ partition (`elem` candidates) ls
|
return $ partition (`elem` candidates) ls
|
||||||
|
|
||||||
|
{- Filters UUIDs to those not matching a TrustLevel. -}
|
||||||
|
trustExclude :: TrustLevel -> [UUID] -> Annex ([UUID])
|
||||||
|
trustExclude level ls = snd <$> trustPartition level ls
|
||||||
|
|
||||||
{- trustLog in a map, overridden with any values from forcetrust or
|
{- trustLog in a map, overridden with any values from forcetrust or
|
||||||
- the git config. The map is cached for speed. -}
|
- the git config. The map is cached for speed. -}
|
||||||
trustMap :: Annex TrustMap
|
trustMap :: Annex TrustMap
|
||||||
|
|
Loading…
Add table
Reference in a new issue