S2S: Project: Remove: Child-active: Revoke Grants-for-teams
This commit is contained in:
parent
3afdfbf3d7
commit
7af44d693c
1 changed files with 11 additions and 1 deletions
|
@ -5060,6 +5060,7 @@ projectRemove now projectID (Verse authorIdMsig body) remove = do
|
||||||
-- Grab extension-Grants that I'm about to revoke
|
-- Grab extension-Grants that I'm about to revoke
|
||||||
gathers <- selectList [SourceUsGatherSource ==. sendID] []
|
gathers <- selectList [SourceUsGatherSource ==. sendID] []
|
||||||
leafs <- selectList [SourceUsLeafSource ==. sendID] []
|
leafs <- selectList [SourceUsLeafSource ==. sendID] []
|
||||||
|
conveys <- selectList [SourceUsConveySource ==. sendID] []
|
||||||
|
|
||||||
-- Delete the whole Source record
|
-- Delete the whole Source record
|
||||||
deleteWhere [SourceRemoveSend ==. sendID]
|
deleteWhere [SourceRemoveSend ==. sendID]
|
||||||
|
@ -5073,6 +5074,10 @@ projectRemove now projectID (Verse authorIdMsig body) remove = do
|
||||||
deleteWhere [SourceUsLeafToLocalLeaf <-. leafIDs]
|
deleteWhere [SourceUsLeafToLocalLeaf <-. leafIDs]
|
||||||
deleteWhere [SourceUsLeafToRemoteLeaf <-. leafIDs]
|
deleteWhere [SourceUsLeafToRemoteLeaf <-. leafIDs]
|
||||||
deleteWhere [SourceUsLeafId <-. leafIDs]
|
deleteWhere [SourceUsLeafId <-. leafIDs]
|
||||||
|
let conveyIDs = map entityKey conveys
|
||||||
|
deleteWhere [SourceUsConveyFromLocalConvey <-. conveyIDs]
|
||||||
|
deleteWhere [SourceUsConveyFromRemoteConvey <-. conveyIDs]
|
||||||
|
deleteWhere [SourceUsConveyId <-. conveyIDs]
|
||||||
case topic of
|
case topic of
|
||||||
Left (localID, _, _) -> do
|
Left (localID, _, _) -> do
|
||||||
deleteWhere [SourceThemDelegateLocalSource ==. localID]
|
deleteWhere [SourceThemDelegateLocalSource ==. localID]
|
||||||
|
@ -5141,7 +5146,12 @@ projectRemove now projectID (Verse authorIdMsig body) remove = do
|
||||||
recip
|
recip
|
||||||
, grantID
|
, grantID
|
||||||
)
|
)
|
||||||
revokes <- for (revokesG ++ revokesL) $ \ (actor, grantID) -> do
|
revokesC <- for conveys $ \ (Entity _ (SourceUsConvey _ startID grantID)) -> do
|
||||||
|
SquadUsStart acceptID _ <- getJust startID
|
||||||
|
SquadUsAccept squadID _ <- getJust acceptID
|
||||||
|
team <- bimap snd snd <$> getSquadTeam squadID
|
||||||
|
return (first LocalActorGroup team, grantID)
|
||||||
|
revokes <- for (revokesG ++ revokesL ++ revokesC) $ \ (actor, grantID) -> do
|
||||||
ext@(actionExt, _, _, _) <- prepareExtRevoke actor grantID
|
ext@(actionExt, _, _, _) <- prepareExtRevoke actor grantID
|
||||||
let recipByKey = LocalActorProject projectID
|
let recipByKey = LocalActorProject projectID
|
||||||
extID <- insertEmptyOutboxItem' (actorOutbox actorRecip) now
|
extID <- insertEmptyOutboxItem' (actorOutbox actorRecip) now
|
||||||
|
|
Loading…
Reference in a new issue