mirror of https://github.com/voidlizard/hbs2
wip, minor fix
This commit is contained in:
parent
f2451697db
commit
77fe327ea8
|
@ -183,7 +183,7 @@ pManifestList :: GitPerks m => Parser (GitCLI m ())
|
||||||
pManifestList = do
|
pManifestList = do
|
||||||
what <- argument pLwwKey (metavar "LWWREF")
|
what <- argument pLwwKey (metavar "LWWREF")
|
||||||
pure do
|
pure do
|
||||||
heads <- withState $ selectRepoHeadsFor DESC what
|
heads <- withState $ selectRepoHeadsFor ASC what
|
||||||
sto <- getStorage
|
sto <- getStorage
|
||||||
for_ heads $ \h -> runMaybeT do
|
for_ heads $ \h -> runMaybeT do
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,8 @@ import Data.Coerce
|
||||||
|
|
||||||
import Streaming.Prelude qualified as S
|
import Streaming.Prelude qualified as S
|
||||||
|
|
||||||
|
data Limit = Limit Integer
|
||||||
|
|
||||||
data SortOrder = ASC | DESC
|
data SortOrder = ASC | DESC
|
||||||
|
|
||||||
newtype SQL a = SQL a
|
newtype SQL a = SQL a
|
||||||
|
|
Loading…
Reference in New Issue