-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Invite user to workspace via invite link #37525
Merged
luacmartins
merged 37 commits into
Expensify:main
from
narefyev91:invite-member-with-join-link
Mar 7, 2024
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
8098418
Invite user to workspace via invite link
narefyev91 e7dea09
Merge branch 'main' into invite-member-with-join-link
narefyev91 21aef54
fix first part of ts
narefyev91 ea7e586
fix last part of ts
narefyev91 a88c6d2
Merge branch 'main' into invite-member-with-join-link
narefyev91 a0c5d5e
Updates based on comments
narefyev91 290197f
clean up
narefyev91 0a13a32
update ui for list
narefyev91 a695178
pod lock
narefyev91 c2b3da7
fix lint
narefyev91 3d28863
fix lint
narefyev91 510c1ba
fix prettier
narefyev91 67ed8bf
add correct types for message
narefyev91 3ed4d69
Merge branch 'main' into invite-member-with-join-link
narefyev91 4fde655
resolve correct naming for inviter email
narefyev91 7945f9d
Hide action and not show message if invite action is resolved
narefyev91 c28a204
Merge branch 'main' into invite-member-with-join-link
narefyev91 5b41738
add correct navigation
narefyev91 a205cb4
add correct payload for accept/reject
narefyev91 420d0cc
Merge branch 'main' into invite-member-with-join-link
narefyev91 33ad6bd
Merge branch 'main' into invite-member-with-join-link
narefyev91 f42431c
Move admin room in left panel to pin with green dot
narefyev91 7387694
Merge branch 'main' into invite-member-with-join-link
narefyev91 4111657
add muted style
narefyev91 d59715c
use correct redirects, fix native ui issue
narefyev91 942e296
prettier
narefyev91 451b211
Merge branch 'main' into invite-member-with-join-link
narefyev91 65b1923
resolve comments
narefyev91 e63978a
support icon inside badge
narefyev91 6bfaf96
fix lint
narefyev91 d2cae9b
Merge branch 'main' into invite-member-with-join-link
narefyev91 4a1ca6d
resolve comments
narefyev91 7c97020
fix single request execution
narefyev91 862e897
fix icon + prettier
narefyev91 e148429
resolve spacing
narefyev91 1c6307f
Merge branch 'main' into invite-member-with-join-link
narefyev91 9997e2f
resolve merge conflicts
narefyev91 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
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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,5 @@ | ||
type AcceptJoinRequestParams = { | ||
requests: string; | ||
}; | ||
|
||
export default AcceptJoinRequestParams; |
This file contains 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,5 @@ | ||
type DeclineJoinRequestParams = { | ||
requests: string; | ||
}; | ||
|
||
export default DeclineJoinRequestParams; |
This file contains 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,6 @@ | ||
type JoinPolicyInviteLinkParams = { | ||
policyID: string; | ||
inviterEmail: string; | ||
}; | ||
|
||
export default JoinPolicyInviteLinkParams; |
This file contains 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 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 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 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 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 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 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 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 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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Making the modal transparent caused this bug #53345 where opening a workspace join link from report screen shows a loading indicator on top of a transparent modal.