-
Notifications
You must be signed in to change notification settings - Fork 333
[WPB-23806] (Un-)suspend apps if en-/disabled in the team. #5177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
fisx
wants to merge
8
commits into
develop
Choose a base branch
from
WPB-23806-_un-_suspend-apps-if-en-_disabled-in-the-team
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
84c28d1
Changelog.
fisx 111026b
Integration test.
fisx 67e1718
Implementation.
fisx 0e0868f
Add note of caution for future me.
fisx 3b1044b
Minimize redundant DB access.
fisx 82eb5b3
Better haddocks.
fisx acd4457
Revert "Better haddocks."
fisx 58cb4ae
Fix imports.
fisx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
changelog.d/3-bug-fixes/WPB-23806-_un-_suspend-apps-if-en-_disabled-in-the-team
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| (Un-)suspend apps if en-/disabled in the team. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -118,22 +118,6 @@ data ChangeEmailResult | |
| ChangeEmailIdempotent | ||
| deriving (Show) | ||
|
|
||
| data UserProfileFilter | ||
| = AppsFromTeamOnly TeamId | ||
| | RegularPlusAllApps | ||
| deriving (Eq, Show) | ||
|
|
||
| runUserProfileFilter :: UserProfileFilter -> UserProfile -> Bool | ||
| runUserProfileFilter upf prof = case upf of | ||
| AppsFromTeamOnly tid -> case prof.profileType of | ||
| UserTypeRegular -> False | ||
| UserTypeApp -> prof.profileTeam == Just tid | ||
| UserTypeBot -> False -- bots aren't in the picture | ||
| RegularPlusAllApps -> case prof.profileType of | ||
| UserTypeRegular -> True | ||
| UserTypeApp -> True | ||
| UserTypeBot -> True | ||
|
|
||
| data UserSubsystem m a where | ||
| -- | First arg is for authorization only. | ||
| GetUserProfiles :: Local UserId -> [Qualified UserId] -> UserSubsystem m [UserProfile] | ||
|
|
@@ -144,7 +128,9 @@ data UserSubsystem m a where | |
| -- FederationError)], [UserProfile])` to maintain API compatibility.) | ||
| GetUserProfilesWithErrors :: Local UserId -> [Qualified UserId] -> UserSubsystem m ([(Qualified UserId, FederationError)], [UserProfile]) | ||
| -- | Sometimes we don't have any identity of a requesting user, and local profiles are public. | ||
| GetLocalUserProfilesFiltered :: UserProfileFilter -> Local [UserId] -> UserSubsystem m [UserProfile] | ||
| GetLocalUserProfiles :: Local [UserId] -> UserSubsystem m [UserProfile] | ||
| -- | Get profiles for all app users in a team, touching only the apps table (efficient). | ||
| GetLocalAppProfilesOnly :: Local TeamId -> UserSubsystem m [UserProfile] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would remove the "Only" suffix. But that is a super opinionated nit-pick. |
||
| -- | Get the union of all user accounts matching the `GetBy` argument *and* having a non-empty UserIdentity. | ||
| GetAccountsBy :: Local GetBy -> UserSubsystem m [User] | ||
| -- | Get user accounts matching the `[EmailAddress]` argument (accounts with missing | ||
|
|
@@ -221,25 +207,6 @@ getLocalUserProfile :: | |
| getLocalUserProfile targetUser = | ||
| listToMaybe <$> getLocalUserProfiles ((: []) <$> targetUser) | ||
|
|
||
| getLocalUserProfileFiltered :: | ||
| (Member UserSubsystem r) => | ||
| UserProfileFilter -> Local UserId -> Sem r (Maybe UserProfile) | ||
| getLocalUserProfileFiltered upf targetUser = | ||
| listToMaybe <$> getLocalUserProfilesFiltered upf ((: []) <$> targetUser) | ||
|
|
||
| getLocalUserProfileFiltered404 :: | ||
| (Member (Error UserSubsystemError) r, Member UserSubsystem r) => | ||
| UserProfileFilter -> Local UserId -> Sem r UserProfile | ||
| getLocalUserProfileFiltered404 upf targetUser = | ||
| getLocalUserProfileFiltered upf targetUser >>= note UserSubsystemProfileNotFound | ||
|
|
||
| getLocalUserProfiles :: | ||
| (Member UserSubsystem r) => | ||
| Local [UserId] -> | ||
| Sem r [UserProfile] | ||
| getLocalUserProfiles = | ||
| getLocalUserProfilesFiltered RegularPlusAllApps | ||
|
|
||
| getLocalAccountBy :: | ||
| (Member UserSubsystem r) => | ||
| HavePendingInvitations -> | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.