Reviewing Join Chapter Requests and Pending Invites
As an administrator of the chapter you can accept or deny members who have requested to join the chapter and review any Pending Invites that have been sent.
Any join chapter request come over first as an email notification when the member submits the request. Follow the directions below to review “Join Chapter Requests”
Any Chapter Invite that has been sent also will be recorded and displayed until the member accepts the invite and/or the invite is deleted.
Login and click the “Chapter Roster” tab button.
Alternatively for “Join Chapter Request” you may also see the Notification at the top of the page.
What is the current logic in the code that shows and hides this component?
Condition Checking:
!loading
: Ensures the code inside the parentheses is only executed ifloading
isfalse
. This implies some data or process is being waited on, and this check confirms it is complete.isMemberAdmin
: Ensures the code executes only if the user has administrative privileges for a member.showRosterrelatedcomponents
: Ensures the code executes only if roster-related components should be displayed.
These three conditions combined ensure that the nested component is rendered only when the loading is complete, the user is an admin, and roster-related components should be shown.
3. What happens after a member accepts the invite by creating an account?
The member should be added to the chapter roster and when the member logs in it should show them apart of the chapter
Pending Chapter Invites:
Once the invitation send that list shown into the pending chapter invitation list.