send out password hash on reg add

This commit is contained in:
Keagan McClelland
2022-05-26 16:10:21 -06:00
parent 23863bb96d
commit 772708dd73
2 changed files with 20 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ import Database.Esqueleto.Experimental
, (^.)
, desc
, from
, groupBy
, ilike
, in_
, innerJoin
@@ -49,6 +50,7 @@ import Lib.Types.Emver ( Version )
import Model
import Startlude hiding ( (%)
, from
, groupBy
, on
, yield
)
@@ -90,6 +92,7 @@ searchServices (Just category) query = selectSource $ do
)
pure service
)
groupBy (services ^. VersionRecordPkgId)
orderBy [desc (services ^. VersionRecordUpdatedAt)]
pure services