change triggering

This commit is contained in:
Filip Gralinski 2017-09-28 15:12:14 +02:00
parent 5cad8dcbfe
commit d79e03e956
1 changed files with 2 additions and 2 deletions

View File

@ -118,13 +118,13 @@ postChallengeSubmissionR name = do
postTriggerRemotelyR :: Handler TypedContent
postTriggerRemotelyR = do
(Just token) <- lookupPostParam "token"
(Just localId) <- lookupPostParam "id"
(Just name) <- lookupPostParam "challenge"
(Just url) <- lookupPostParam "url"
mBranch <- lookupPostParam "branch"
let branch = fromMaybe "master" mBranch
Entity challengeId _ <- runDB $ getBy404 $ UniqueName name
[Entity userId _] <- runDB $ selectList [UserTriggerToken ==. Just token] []
[Entity userId _] <- runDB $ selectList [UserLocalId ==. Just localId] []
isPermitted <- canTrigger userId name url
if isPermitted
then