├── .coderabbit.yaml ├── .dockerignore ├── .env.example ├── .flake8 ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── dependabot.yaml ├── pull_request_template.md └── workflows │ ├── README.md │ ├── auto-label.json5 │ ├── check-tsdoc.js │ ├── codeql-codescan.yml │ ├── issue.yml │ ├── merge-conflict-check.yml │ ├── pull-request-review.yml │ ├── pull-request-target.yml │ ├── pull-request.yml │ ├── push-deploy-website.yml │ ├── push.yml │ ├── requirements.txt │ ├── scripts │ ├── app_health_check.sh │ ├── check_docstrings.py │ ├── code_coverage_disable_check.py │ ├── compare_translations.py │ ├── countline.py │ ├── css_check.py │ └── eslint_disable_check.py │ └── stale.yml ├── .gitignore ├── .graphqlrc.yml ├── .husky ├── post-merge └── pre-commit ├── .lintstagedrc.json ├── .node-version ├── .nojekyll ├── .prettierignore ├── .prettierrc ├── .pydocstyle ├── CODE_STYLE.md ├── CONTRIBUTING.md ├── DOCUMENTATION.md ├── INSTALLATION.md ├── config ├── docker │ └── setup │ │ ├── nginx.conf │ │ └── nginx.prod.conf └── vite.config.ts ├── docker ├── Dockerfile.deploy ├── Dockerfile.dev ├── Dockerfile.prod ├── docker-compose.deploy.yaml ├── docker-compose.dev.yaml └── docker-compose.prod.yaml ├── docs ├── docs │ ├── auto-docs │ │ ├── Actions │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── App │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── Constant │ │ │ ├── constant │ │ │ │ └── variables │ │ │ │ │ ├── AUTH_TOKEN.md │ │ │ │ │ ├── BACKEND_URL.md │ │ │ │ │ ├── REACT_APP_BACKEND_WEBSOCKET_URL.md │ │ │ │ │ ├── REACT_APP_CUSTOM_PORT.md │ │ │ │ │ ├── REACT_APP_USE_RECAPTCHA.md │ │ │ │ │ └── RECAPTCHA_SITE_KEY.md │ │ │ └── fileUpload │ │ │ │ └── variables │ │ │ │ ├── FILE_UPLOAD_ALLOWED_TYPES.md │ │ │ │ └── FILE_UPLOAD_MAX_SIZE_MB.md │ │ ├── DeleteUser │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── GraphQl │ │ │ ├── Mutations │ │ │ │ ├── ActionItemCategoryMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_ACTION_ITEM_CATEGORY_MUTATION.md │ │ │ │ │ │ └── UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md │ │ │ │ ├── ActionItemMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_ACTION_ITEM_MUTATION.md │ │ │ │ │ │ ├── DELETE_ACTION_ITEM_MUTATION.md │ │ │ │ │ │ └── UPDATE_ACTION_ITEM_MUTATION.md │ │ │ │ ├── AdvertisementMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── ADD_ADVERTISEMENT_MUTATION.md │ │ │ │ │ │ ├── DELETE_ADVERTISEMENT_MUTATION.md │ │ │ │ │ │ └── UPDATE_ADVERTISEMENT_MUTATION.md │ │ │ │ ├── AgendaCategoryMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md │ │ │ │ │ │ ├── DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md │ │ │ │ │ │ └── UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md │ │ │ │ ├── AgendaItemMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_AGENDA_ITEM_MUTATION.md │ │ │ │ │ │ ├── DELETE_AGENDA_ITEM_MUTATION.md │ │ │ │ │ │ └── UPDATE_AGENDA_ITEM_MUTATION.md │ │ │ │ ├── CampaignMutation │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_CAMPAIGN_MUTATION.md │ │ │ │ │ │ └── UPDATE_CAMPAIGN_MUTATION.md │ │ │ │ ├── CommentMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_COMMENT_POST.md │ │ │ │ │ │ ├── LIKE_COMMENT.md │ │ │ │ │ │ └── UNLIKE_COMMENT.md │ │ │ │ ├── EventAttendeeMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── ADD_EVENT_ATTENDEE.md │ │ │ │ │ │ ├── MARK_CHECKIN.md │ │ │ │ │ │ └── REMOVE_EVENT_ATTENDEE.md │ │ │ │ ├── EventVolunteerMutation │ │ │ │ │ └── variables │ │ │ │ │ │ ├── ADD_VOLUNTEER.md │ │ │ │ │ │ ├── CREATE_VOLUNTEER_GROUP.md │ │ │ │ │ │ ├── CREATE_VOLUNTEER_MEMBERSHIP.md │ │ │ │ │ │ ├── DELETE_VOLUNTEER.md │ │ │ │ │ │ ├── DELETE_VOLUNTEER_GROUP.md │ │ │ │ │ │ ├── UPDATE_VOLUNTEER_GROUP.md │ │ │ │ │ │ └── UPDATE_VOLUNTEER_MEMBERSHIP.md │ │ │ │ ├── FundMutation │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_FUND_MUTATION.md │ │ │ │ │ │ └── UPDATE_FUND_MUTATION.md │ │ │ │ ├── OrganizationMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── ADD_USER_TO_GROUP_CHAT.md │ │ │ │ │ │ ├── CANCEL_MEMBERSHIP_REQUEST.md │ │ │ │ │ │ ├── CREATE_CHAT.md │ │ │ │ │ │ ├── CREATE_SAMPLE_ORGANIZATION_MUTATION.md │ │ │ │ │ │ ├── EDIT_CHAT_MESSAGE.md │ │ │ │ │ │ ├── JOIN_PUBLIC_ORGANIZATION.md │ │ │ │ │ │ ├── MARK_CHAT_MESSAGES_AS_READ.md │ │ │ │ │ │ ├── MESSAGE_SENT_TO_CHAT.md │ │ │ │ │ │ ├── REMOVE_SAMPLE_ORGANIZATION_MUTATION.md │ │ │ │ │ │ ├── SEND_MEMBERSHIP_REQUEST.md │ │ │ │ │ │ ├── SEND_MESSAGE_TO_CHAT.md │ │ │ │ │ │ ├── TOGGLE_PINNED_POST.md │ │ │ │ │ │ ├── UPDATE_CHAT.md │ │ │ │ │ │ └── UPDATE_USER_ROLE_IN_ORG_MUTATION.md │ │ │ │ ├── PledgeMutation │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_PLEDGE.md │ │ │ │ │ │ ├── DELETE_PLEDGE.md │ │ │ │ │ │ └── UPDATE_PLEDGE.md │ │ │ │ ├── TagMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── ADD_PEOPLE_TO_TAG.md │ │ │ │ │ │ ├── ASSIGN_TO_TAGS.md │ │ │ │ │ │ ├── CREATE_USER_TAG.md │ │ │ │ │ │ ├── REMOVE_FROM_TAGS.md │ │ │ │ │ │ ├── REMOVE_USER_TAG.md │ │ │ │ │ │ ├── UNASSIGN_USER_TAG.md │ │ │ │ │ │ └── UPDATE_USER_TAG.md │ │ │ │ ├── VenueMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_VENUE_MUTATION.md │ │ │ │ │ │ ├── DELETE_VENUE_MUTATION.md │ │ │ │ │ │ └── UPDATE_VENUE_MUTATION.md │ │ │ │ └── mutations │ │ │ │ │ └── variables │ │ │ │ │ ├── ACCEPT_ORGANIZATION_REQUEST_MUTATION.md │ │ │ │ │ ├── ADDRESS_DETAILS_FRAGMENT.md │ │ │ │ │ ├── ADD_ADMIN_MUTATION.md │ │ │ │ │ ├── ADD_MEMBER_MUTATION.md │ │ │ │ │ ├── BLOCK_USER_MUTATION_PG.md │ │ │ │ │ ├── CREATE_EVENT_MUTATION.md │ │ │ │ │ ├── CREATE_MEMBER_PG.md │ │ │ │ │ ├── CREATE_ORGANIZATION_MEMBERSHIP_MUTATION_PG.md │ │ │ │ │ ├── CREATE_ORGANIZATION_MUTATION.md │ │ │ │ │ ├── CREATE_ORGANIZATION_MUTATION_PG.md │ │ │ │ │ ├── CREATE_POST_MUTATION.md │ │ │ │ │ ├── DELETE_EVENT_MUTATION.md │ │ │ │ │ ├── DELETE_ORGANIZATION_MUTATION.md │ │ │ │ │ ├── DELETE_POST_MUTATION.md │ │ │ │ │ ├── DONATE_TO_ORGANIZATION.md │ │ │ │ │ ├── FORGOT_PASSWORD_MUTATION.md │ │ │ │ │ ├── GENERATE_OTP_MUTATION.md │ │ │ │ │ ├── GET_FILE_PRESIGNEDURL.md │ │ │ │ │ ├── LIKE_POST.md │ │ │ │ │ ├── PRESIGNED_URL.md │ │ │ │ │ ├── RECAPTCHA_MUTATION.md │ │ │ │ │ ├── REFRESH_TOKEN_MUTATION.md │ │ │ │ │ ├── REGISTER_EVENT.md │ │ │ │ │ ├── REJECT_ORGANIZATION_REQUEST_MUTATION.md │ │ │ │ │ ├── REMOVE_ADMIN_MUTATION.md │ │ │ │ │ ├── REMOVE_MEMBER_MUTATION.md │ │ │ │ │ ├── REMOVE_MEMBER_MUTATION_PG.md │ │ │ │ │ ├── RESET_COMMUNITY.md │ │ │ │ │ ├── REVOKE_REFRESH_TOKEN.md │ │ │ │ │ ├── SIGNUP_MUTATION.md │ │ │ │ │ ├── UNBLOCK_USER_MUTATION_PG.md │ │ │ │ │ ├── UNLIKE_POST.md │ │ │ │ │ ├── UPDATE_COMMUNITY_PG.md │ │ │ │ │ ├── UPDATE_CURRENT_USER_MUTATION.md │ │ │ │ │ ├── UPDATE_EVENT_MUTATION.md │ │ │ │ │ ├── UPDATE_ORGANIZATION_MUTATION.md │ │ │ │ │ ├── UPDATE_POST_MUTATION.md │ │ │ │ │ ├── UPDATE_SESSION_TIMEOUT_PG.md │ │ │ │ │ ├── UPDATE_USER_MUTATION.md │ │ │ │ │ └── UPDATE_USER_PASSWORD_MUTATION.md │ │ │ └── Queries │ │ │ │ ├── ActionItemCategoryQueries │ │ │ │ └── variables │ │ │ │ │ └── ACTION_ITEM_CATEGORY_LIST.md │ │ │ │ ├── ActionItemQueries │ │ │ │ └── variables │ │ │ │ │ ├── ACTION_ITEMS_BY_USER.md │ │ │ │ │ └── ACTION_ITEM_LIST.md │ │ │ │ ├── AdvertisementQueries │ │ │ │ └── variables │ │ │ │ │ └── ORGANIZATION_ADVERTISEMENT_LIST.md │ │ │ │ ├── AgendaCategoryQueries │ │ │ │ └── variables │ │ │ │ │ └── AGENDA_ITEM_CATEGORY_LIST.md │ │ │ │ ├── AgendaItemQueries │ │ │ │ └── variables │ │ │ │ │ ├── AgendaItemByEvent.md │ │ │ │ │ └── AgendaItemByOrganization.md │ │ │ │ ├── EventVolunteerQueries │ │ │ │ └── variables │ │ │ │ │ ├── EVENT_VOLUNTEER_GROUP_LIST.md │ │ │ │ │ ├── EVENT_VOLUNTEER_LIST.md │ │ │ │ │ ├── USER_VOLUNTEER_MEMBERSHIP.md │ │ │ │ │ └── VOLUNTEER_RANKING.md │ │ │ │ ├── OrganizationQueries │ │ │ │ └── variables │ │ │ │ │ ├── FILTERED_ORGANIZATION_POSTS.md │ │ │ │ │ ├── GET_POSTS_BY_ORG.md │ │ │ │ │ ├── ORGANIZATION_ADMINS_LIST.md │ │ │ │ │ ├── ORGANIZATION_FUNDS.md │ │ │ │ │ ├── ORGANIZATION_POST_LIST.md │ │ │ │ │ ├── ORGANIZATION_USER_TAGS_LIST.md │ │ │ │ │ ├── ORGANIZATION_USER_TAGS_LIST_PG.md │ │ │ │ │ ├── USER_CREATED_ORGANIZATIONS.md │ │ │ │ │ ├── USER_JOINED_ORGANIZATIONS_PG.md │ │ │ │ │ └── VENUE_LIST.md │ │ │ │ ├── PlugInQueries │ │ │ │ └── variables │ │ │ │ │ ├── ADVERTISEMENTS_GET.md │ │ │ │ │ ├── CHATS_LIST.md │ │ │ │ │ ├── CHAT_BY_ID.md │ │ │ │ │ ├── GROUP_CHAT_LIST.md │ │ │ │ │ ├── IS_SAMPLE_ORGANIZATION_QUERY.md │ │ │ │ │ ├── ORGANIZATION_EVENTS_CONNECTION.md │ │ │ │ │ ├── UNREAD_CHAT_LIST.md │ │ │ │ │ └── USER_EVENTS_VOLUNTEER.md │ │ │ │ ├── Queries │ │ │ │ └── variables │ │ │ │ │ ├── ADMIN_LIST.md │ │ │ │ │ ├── ALL_ORGANIZATIONS_PG.md │ │ │ │ │ ├── BLOCK_PAGE_MEMBER_LIST.md │ │ │ │ │ ├── CURRENT_USER.md │ │ │ │ │ ├── EVENT_ATTENDEES.md │ │ │ │ │ ├── EVENT_CHECKINS.md │ │ │ │ │ ├── EVENT_DETAILS.md │ │ │ │ │ ├── EVENT_FEEDBACKS.md │ │ │ │ │ ├── EVENT_REGISTRANTS.md │ │ │ │ │ ├── GET_COMMUNITY_DATA.md │ │ │ │ │ ├── GET_COMMUNITY_DATA_PG.md │ │ │ │ │ ├── GET_COMMUNITY_SESSION_TIMEOUT_DATA_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_BLOCKED_USERS_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_DATA_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_EVENTS.md │ │ │ │ │ ├── GET_ORGANIZATION_EVENTS_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_MEMBERS_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_POSTS_COUNT_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_POSTS_PG.md │ │ │ │ │ ├── GET_POSTS_BY_ORG.md │ │ │ │ │ ├── GET_USER_BY_ID.md │ │ │ │ │ ├── IS_USER_BLOCKED.md │ │ │ │ │ ├── MEMBERSHIP_REQUEST.md │ │ │ │ │ ├── MEMBERS_LIST.md │ │ │ │ │ ├── MEMBERS_LIST_PG.md │ │ │ │ │ ├── ORGANIZATIONS_LIST.md │ │ │ │ │ ├── ORGANIZATIONS_MEMBER_CONNECTION_LIST.md │ │ │ │ │ ├── ORGANIZATION_DONATION_CONNECTION_LIST.md │ │ │ │ │ ├── ORGANIZATION_EVENT_CONNECTION_LIST.md │ │ │ │ │ ├── ORGANIZATION_EVENT_LIST.md │ │ │ │ │ ├── ORGANIZATION_LIST.md │ │ │ │ │ ├── RECURRING_EVENTS.md │ │ │ │ │ ├── SIGNIN_QUERY.md │ │ │ │ │ ├── USERS_CONNECTION_LIST.md │ │ │ │ │ ├── USER_DETAILS.md │ │ │ │ │ ├── USER_JOINED_ORGANIZATIONS_PG.md │ │ │ │ │ ├── USER_LIST.md │ │ │ │ │ ├── USER_LIST_FOR_TABLE.md │ │ │ │ │ ├── USER_LIST_REQUEST.md │ │ │ │ │ └── USER_ORGANIZATION_LIST.md │ │ │ │ ├── fundQueries │ │ │ │ └── variables │ │ │ │ │ ├── FUND_CAMPAIGN.md │ │ │ │ │ ├── FUND_CAMPAIGN_PLEDGE.md │ │ │ │ │ ├── FUND_LIST.md │ │ │ │ │ ├── USER_FUND_CAMPAIGNS.md │ │ │ │ │ └── USER_PLEDGES.md │ │ │ │ └── userTagQueries │ │ │ │ └── variables │ │ │ │ ├── USER_TAGS_ASSIGNED_MEMBERS.md │ │ │ │ ├── USER_TAGS_MEMBERS_TO_ASSIGN_TO.md │ │ │ │ └── USER_TAG_SUB_TAGS.md │ │ ├── GroupChatDetails │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── LeaveOrganization │ │ │ ├── functions │ │ │ │ └── default.md │ │ │ └── variables │ │ │ │ ├── userEmail.md │ │ │ │ └── userId.md │ │ ├── LoginPage │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── LoginPortalToggle │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── OrgActionItemCategories │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── OrgContriCards │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── OrgContribution │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── OrgPeopleListCard │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── OtherSettings │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── PledgeModal │ │ │ ├── functions │ │ │ │ └── default.md │ │ │ └── interfaces │ │ │ │ └── InterfacePledgeModal.md │ │ ├── Register │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── Requests │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── UserProfile │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── UserUpdate │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── Volunteers │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── components │ │ │ ├── AddPeopleToTag │ │ │ │ ├── AddPeopleToTag │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── AddPeopleToTagsMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ ├── MOCKS_ERROR.md │ │ │ │ │ ├── MOCK_EMPTY.md │ │ │ │ │ ├── MOCK_NON_ERROR.md │ │ │ │ │ ├── MOCK_NO_DATA.md │ │ │ │ │ └── MOCK_NULL_FETCH_MORE.md │ │ │ ├── Advertisements │ │ │ │ ├── Advertisements │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── AdvertisementsMocks │ │ │ │ │ ├── functions │ │ │ │ │ │ └── wait.md │ │ │ │ │ └── variables │ │ │ │ │ │ ├── client.md │ │ │ │ │ │ ├── createAdSuccessMock.md │ │ │ │ │ │ ├── createAdvertisement.md │ │ │ │ │ │ ├── createAdvertisementError.md │ │ │ │ │ │ ├── createAdvertisementWithEndDateBeforeStart.md │ │ │ │ │ │ ├── createAdvertisementWithoutName.md │ │ │ │ │ │ ├── createDates.md │ │ │ │ │ │ ├── dateConstants.md │ │ │ │ │ │ ├── deleteAdvertisementMocks.md │ │ │ │ │ │ ├── emptyMocks.md │ │ │ │ │ │ ├── fetchErrorMocks.md │ │ │ │ │ │ ├── filterActiveAdvertisementData.md │ │ │ │ │ │ ├── filterCompletedAdvertisementData.md │ │ │ │ │ │ ├── getActiveAdvertisementMocks.md │ │ │ │ │ │ ├── getCompletedAdvertisementMocks.md │ │ │ │ │ │ ├── httpLink.md │ │ │ │ │ │ ├── infiniteScrollMocks.md │ │ │ │ │ │ ├── initialActiveData.md │ │ │ │ │ │ ├── initialArchivedData.md │ │ │ │ │ │ ├── mockFileForAdvertisementScreen.md │ │ │ │ │ │ ├── updateAdMocks.md │ │ │ │ │ │ └── updateDates.md │ │ │ │ ├── core │ │ │ │ │ ├── AdvertisementEntry │ │ │ │ │ │ └── AdvertisementEntry │ │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── AdvertisementRegister │ │ │ │ │ │ ├── AdvertisementRegister │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── AdvertisementRegisterMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── createAdFailMock.md │ │ │ │ │ │ ├── createAdvertisement.md │ │ │ │ │ │ ├── dateConstants.md │ │ │ │ │ │ ├── mockBigFile.md │ │ │ │ │ │ ├── mockFile.md │ │ │ │ │ │ └── updateAdFailMock.md │ │ │ │ └── skeleton │ │ │ │ │ └── AdvertisementSkeleton │ │ │ │ │ └── functions │ │ │ │ │ └── AdvertisementSkeleton.md │ │ │ ├── AgendaCategory │ │ │ │ ├── AgendaCategoryContainer │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── AgendaCategoryContainerMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ ├── MOCKS_ERROR_MUTATIONS.md │ │ │ │ │ ├── props.md │ │ │ │ │ └── props2.md │ │ │ ├── AgendaItems │ │ │ │ ├── AgendaItemsContainer │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── AgendaItemsMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_ERROR.md │ │ │ │ │ │ ├── mockAgendaItemCategories.md │ │ │ │ │ │ ├── mockFormState1.md │ │ │ │ │ │ ├── mockFormState2.md │ │ │ │ │ │ ├── props.md │ │ │ │ │ │ └── props2.md │ │ │ │ ├── Create │ │ │ │ │ └── AgendaItemsCreateModal │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── Delete │ │ │ │ │ └── AgendaItemsDeleteModal │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── Preview │ │ │ │ │ └── AgendaItemsPreviewModal │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── Update │ │ │ │ │ └── AgendaItemsUpdateModal │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── Avatar │ │ │ │ └── Avatar │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── ChangeLanguageDropdown │ │ │ │ └── ChangeLanguageDropDown │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── CheckIn │ │ │ │ ├── CheckInMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── checkInMutationSuccess.md │ │ │ │ │ │ ├── checkInMutationUnsuccess.md │ │ │ │ │ │ └── checkInQueryMock.md │ │ │ │ ├── CheckInWrapper │ │ │ │ │ └── functions │ │ │ │ │ │ └── CheckInWrapper.md │ │ │ │ ├── Modal │ │ │ │ │ ├── CheckInModal │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── CheckInModal.md │ │ │ │ │ └── Row │ │ │ │ │ │ └── TableRow │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── TableRow.md │ │ │ │ └── tagTemplate │ │ │ │ │ └── variables │ │ │ │ │ └── tagTemplate.md │ │ │ ├── CollapsibleDropdown │ │ │ │ └── CollapsibleDropdown │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── ContriStats │ │ │ │ └── ContriStats │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── CurrentHourIndicator │ │ │ │ └── CurrentHourIndicator │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── DynamicDropDown │ │ │ │ └── DynamicDropDown │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── EditCustomFieldDropDown │ │ │ │ └── EditCustomFieldDropDown │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── EventCalender │ │ │ │ ├── EventCalenderMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ └── eventData.md │ │ │ │ ├── Header │ │ │ │ │ └── EventHeader │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── Monthly │ │ │ │ │ └── EventCalender │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── Yearly │ │ │ │ │ └── YearlyEventCalender │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── EventDashboardScreen │ │ │ │ ├── EventDashboardScreen │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── EventDashboardScreenMocks │ │ │ │ │ └── variables │ │ │ │ │ └── MOCKS.md │ │ │ ├── EventListCard │ │ │ │ ├── EventListCard │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── EventListCardProps │ │ │ │ │ └── variables │ │ │ │ │ │ └── props.md │ │ │ │ └── Modal │ │ │ │ │ ├── Delete │ │ │ │ │ └── EventListCardDeleteModal │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── EventListCardMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ └── MOCKS.md │ │ │ │ │ ├── EventListCardModals │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── Preview │ │ │ │ │ └── EventListCardPreviewModal │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ └── Update │ │ │ │ │ └── EventListCardUpdateModal │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── EventManagement │ │ │ │ ├── Dashboard │ │ │ │ │ ├── EventDashboard.mocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── MOCKS_WITHOUT_TIME.md │ │ │ │ │ │ │ └── MOCKS_WITH_TIME.md │ │ │ │ │ └── EventDashboard │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── EventAgendaItems │ │ │ │ │ ├── EventAgendaItems │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── EventAgendaItemsMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_ERROR_MUTATION.md │ │ │ │ │ │ └── MOCKS_ERROR_QUERY.md │ │ │ │ ├── EventAttendance │ │ │ │ │ ├── Attendance │ │ │ │ │ │ └── EventAttendance │ │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── AttendanceList │ │ │ │ │ │ └── AttendedEventList │ │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── EventAttendanceMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── MOCKDETAIL.md │ │ │ │ │ │ │ ├── MOCKEVENT.md │ │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ │ └── MOCKS_ERROR.md │ │ │ │ │ └── Statistics │ │ │ │ │ │ └── EventStatistics │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── AttendanceStatisticsModal.md │ │ │ │ └── EventRegistrant │ │ │ │ │ ├── EventRegistrants │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ └── Registrations.mocks │ │ │ │ │ └── variables │ │ │ │ │ ├── REGISTRANTS_MOCKS.md │ │ │ │ │ └── REGISTRANTS_MOCKS_ERROR.md │ │ │ ├── EventRegistrantsModal │ │ │ │ ├── EventRegistrantsWrapper │ │ │ │ │ └── functions │ │ │ │ │ │ └── EventRegistrantsWrapper.md │ │ │ │ └── Modal │ │ │ │ │ ├── AddOnSpot │ │ │ │ │ └── AddOnSpotAttendee │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ └── EventRegistrantsModal │ │ │ │ │ └── functions │ │ │ │ │ └── EventRegistrantsModal.md │ │ │ ├── EventStats │ │ │ │ ├── EventStatsMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── emptyProps.md │ │ │ │ │ │ ├── mockData.md │ │ │ │ │ │ └── nonEmptyProps.md │ │ │ │ ├── EventStatsWrapper │ │ │ │ │ └── functions │ │ │ │ │ │ └── EventStatsWrapper.md │ │ │ │ └── Statistics │ │ │ │ │ ├── AverageRating │ │ │ │ │ └── AverageRating │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── AverageRating.md │ │ │ │ │ ├── EventStats │ │ │ │ │ └── functions │ │ │ │ │ │ └── EventStats.md │ │ │ │ │ ├── Feedback │ │ │ │ │ └── Feedback │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── FeedbackStats.md │ │ │ │ │ └── Review │ │ │ │ │ └── Review │ │ │ │ │ └── functions │ │ │ │ │ └── ReviewStats.md │ │ │ ├── GroupChatDetails │ │ │ │ └── GroupChatDetailsMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── filledMockChat.md │ │ │ │ │ ├── incompleteMockChat.md │ │ │ │ │ └── mocks.md │ │ │ ├── HolidayCards │ │ │ │ └── HolidayCard │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── IconComponent │ │ │ │ └── IconComponent │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceIconComponent.md │ │ │ ├── InfiniteScrollLoader │ │ │ │ └── InfiniteScrollLoader │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── LeftDrawer │ │ │ │ └── LeftDrawer │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceLeftDrawerProps.md │ │ │ ├── LeftDrawerOrg │ │ │ │ └── LeftDrawerOrg │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceLeftDrawerProps.md │ │ │ ├── Loader │ │ │ │ └── Loader │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── MemberActivity │ │ │ │ ├── Card │ │ │ │ │ └── EventsAttendedCardItem │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceCardItem.md │ │ │ │ ├── EventsAttendedByMember │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── MemberActivityMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── errorMocks.md │ │ │ │ │ │ ├── mockEventData.md │ │ │ │ │ │ └── mocks.md │ │ │ │ └── Modal │ │ │ │ │ ├── CustomCell │ │ │ │ │ └── customTableCell │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── CustomTableCell.md │ │ │ │ │ └── EventsAttendedMemberModal │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── MemberRequestCard │ │ │ │ ├── MemberRequestCard │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── MemberRequestMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ ├── MOCKS2.md │ │ │ │ │ └── MOCKS3.md │ │ │ ├── NotFound │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrgAdminListCard │ │ │ │ └── OrgAdminListCard │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrgDelete │ │ │ │ └── OrgDelete │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrgListCard │ │ │ │ ├── OrgListCard │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceOrgListCardPropsPG.md │ │ │ │ ├── TruncatedText │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── useDebounce │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrgPostCard │ │ │ │ ├── DeleteModal │ │ │ │ │ └── DeletePostModal │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── OrgPostCard │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrgSettings │ │ │ │ ├── ActionItemCategories │ │ │ │ │ ├── Modal │ │ │ │ │ │ └── CategoryModal │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ └── InterfaceActionItemCategoryModal.md │ │ │ │ │ └── OrgActionItemCategoryMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_EMPTY.md │ │ │ │ │ │ └── MOCKS_ERROR.md │ │ │ │ ├── AgendaItemCategories │ │ │ │ │ ├── Create │ │ │ │ │ │ └── AgendaCategoryCreateModal │ │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── Delete │ │ │ │ │ │ └── AgendaCategoryDeleteModal │ │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── OrganizationAgendaCategory │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── OrganizationAgendaCategoryErrorMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md │ │ │ │ │ │ │ └── MOCKS_ERROR_MUTATION.md │ │ │ │ │ ├── OrganizationAgendaCategoryMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── MOCKS.md │ │ │ │ │ ├── Preview │ │ │ │ │ │ └── AgendaCategoryPreviewModal │ │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── Update │ │ │ │ │ │ └── AgendaCategoryUpdateModal │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── General │ │ │ │ │ ├── DeleteOrg │ │ │ │ │ └── DeleteOrg │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── GeneralSettings │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ └── OrgUpdate │ │ │ │ │ ├── OrgUpdate │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ └── OrgUpdateMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ ├── MOCKS_ERROR_ORGLIST.md │ │ │ │ │ └── MOCKS_ERROR_UPDATE_ORGLIST.md │ │ │ ├── OrganizationCardStart │ │ │ │ └── OrganizationCardStart │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrganizationDashCards │ │ │ │ ├── CardItem │ │ │ │ │ ├── CardItem │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ └── InterfaceCardItem.md │ │ │ │ │ └── Loader │ │ │ │ │ │ └── CardItemLoading │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── DashboardCard │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── Loader │ │ │ │ │ └── DashboardCardLoading │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrganizationScreen │ │ │ │ └── OrganizationScreen │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── Pagination │ │ │ │ ├── Navigator │ │ │ │ │ └── Pagination │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── PaginationList │ │ │ │ │ └── PaginationList │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── ProfileCard │ │ │ │ └── ProfileCard │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── ProfileDropdown │ │ │ │ └── ProfileDropdown │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── RecurrenceOptions │ │ │ │ ├── Modal │ │ │ │ │ └── CustomRecurrenceModal │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── RecurrenceOptions │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── RequestsTableItem │ │ │ │ ├── RequestsTableItem │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── RequestsTableItemMocks │ │ │ │ │ └── variables │ │ │ │ │ └── MOCKS.md │ │ │ ├── SecuredRoute │ │ │ │ └── SecuredRoute │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── SignOut │ │ │ │ └── SignOut │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── SuperAdminScreen │ │ │ │ └── SuperAdminScreen │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── TableLoader │ │ │ │ └── TableLoader │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceTableLoader.md │ │ │ ├── TagActions │ │ │ │ ├── Node │ │ │ │ │ ├── TagNode │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── TagNodeMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS1.md │ │ │ │ │ │ └── MOCKS_ERROR_SUBTAGS_QUERY1.md │ │ │ │ ├── TagActions │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceTagActionsProps.md │ │ │ │ └── TagActionsMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ ├── MOCKS_ERROR_ASSIGN_OR_REMOVAL_TAGS.md │ │ │ │ │ ├── MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md │ │ │ │ │ └── MOCKS_ERROR_SUBTAGS_QUERY.md │ │ │ ├── UpdateSession │ │ │ │ └── UpdateSession │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── UserListCard │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── UserPasswordUpdate │ │ │ │ └── UserPasswordUpdateMocks │ │ │ │ │ └── variables │ │ │ │ │ └── MOCKS.md │ │ │ ├── UserPortal │ │ │ │ ├── ChatRoom │ │ │ │ │ └── ChatRoom │ │ │ │ │ │ └── functions │ │ │ │ │ │ ├── MessageImage.md │ │ │ │ │ │ └── default.md │ │ │ │ ├── CommentCard │ │ │ │ │ └── CommentCard │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── ContactCard │ │ │ │ │ └── ContactCard │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── CreateDirectChat │ │ │ │ │ ├── CreateDirectChatMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── CHAT_BY_ID_QUERY_MOCK.md │ │ │ │ │ │ │ ├── GROUP_CHAT_BY_USER_ID_QUERY_MOCK.md │ │ │ │ │ │ │ ├── MESSAGE_SENT_TO_CHAT_MOCK.md │ │ │ │ │ │ │ ├── UNREAD_CHAT_LIST_QUERY_MOCK.md │ │ │ │ │ │ │ └── UserConnectionListMock.md │ │ │ │ │ ├── CreateDirectChatMocks2 │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── CHATS_LIST_MOCK.md │ │ │ │ │ │ │ ├── CREATE_CHAT_MUTATION_MOCK.md │ │ │ │ │ │ │ ├── GROUP_CHAT_BY_ID_QUERY_MOCK.md │ │ │ │ │ │ │ └── MARK_CHAT_MESSAGES_AS_READ_MOCK.md │ │ │ │ │ └── functions │ │ │ │ │ │ ├── default.md │ │ │ │ │ │ └── handleCreateDirectChat.md │ │ │ │ ├── CreateGroupChat │ │ │ │ │ └── CreateGroupChat │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── DonationCard │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── EventCard │ │ │ │ │ └── EventCard │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── OrganizationCard │ │ │ │ │ └── OrganizationCard │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── OrganizationNavbar │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── OrganizationSidebar │ │ │ │ │ └── OrganizationSidebar │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── PeopleCard │ │ │ │ │ └── PeopleCard │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── PostCard │ │ │ │ │ └── PostCard │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── PromotedPost │ │ │ │ │ └── PromotedPost │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── SecuredRouteForUser │ │ │ │ │ └── SecuredRouteForUser │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── StartPostModal │ │ │ │ │ └── StartPostModal │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── UserNavbar │ │ │ │ │ └── UserNavbar │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── UserProfile │ │ │ │ │ ├── EventsAttendedByUser │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── EventsAttendedByUser.md │ │ │ │ │ └── UserAddressFields │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── UserAddressFields.md │ │ │ │ ├── UserSidebar │ │ │ │ │ └── UserSidebar │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceUserSidebarProps.md │ │ │ │ └── UserSidebarOrg │ │ │ │ │ └── UserSidebarOrg │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceUserSidebarOrgProps.md │ │ │ ├── UsersTableItem │ │ │ │ ├── UserTableItemMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS2.md │ │ │ │ │ │ └── MOCKS_UPDATE.md │ │ │ │ └── UsersTableItem │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── Venues │ │ │ │ ├── Modal │ │ │ │ │ └── VenueModal │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceVenueModalProps.md │ │ │ │ ├── VenueCard │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── VenueCardMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── MOCK_HANDLE_DELETE.md │ │ │ │ │ ├── MOCK_HANDLE_EDIT.md │ │ │ │ │ ├── MOCK_VENUE_ITEM.md │ │ │ │ │ ├── MOCK_VENUE_ITEM_LONG_TEXT.md │ │ │ │ │ └── MOCK_VENUE_ITEM_WITH_IMAGE.md │ │ │ └── test-utils │ │ │ │ └── TestWrapper │ │ │ │ └── functions │ │ │ │ └── TestWrapper.md │ │ ├── constants │ │ │ └── variables │ │ │ │ └── socialMediaLinks.md │ │ ├── reportWebVitals │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── screens │ │ │ ├── BlockUser │ │ │ │ └── BlockUser │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── CommunityProfile │ │ │ │ └── CommunityProfile │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── EventManagement │ │ │ │ └── EventManagement │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── EventVolunteers │ │ │ │ ├── Requests │ │ │ │ │ └── Requests.mocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ └── UPDATE_ERROR_MOCKS.md │ │ │ │ ├── VolunteerContainer │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── VolunteerGroups │ │ │ │ │ ├── VolunteerGroups │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── deleteModal │ │ │ │ │ │ └── VolunteerGroupDeleteModal │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ └── InterfaceDeleteVolunteerGroupModal.md │ │ │ │ │ ├── modal │ │ │ │ │ │ ├── VolunteerGroupModal │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ │ └── default.md │ │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ │ └── InterfaceVolunteerGroupModal.md │ │ │ │ │ │ └── VolunteerGroups.mocks │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ │ ├── MOCKS_EMPTY.md │ │ │ │ │ │ │ └── MOCKS_ERROR.md │ │ │ │ │ └── viewModal │ │ │ │ │ │ └── VolunteerGroupViewModal │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceVolunteerGroupViewModal.md │ │ │ │ └── Volunteers │ │ │ │ │ ├── Volunteers.mocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_EMPTY.md │ │ │ │ │ │ └── MOCKS_ERROR.md │ │ │ │ │ ├── createModal │ │ │ │ │ └── VolunteerCreateModal │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceVolunteerCreateModal.md │ │ │ │ │ ├── deleteModal │ │ │ │ │ └── VolunteerDeleteModal │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceDeleteVolunteerModal.md │ │ │ │ │ └── viewModal │ │ │ │ │ └── VolunteerViewModal │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceVolunteerViewModal.md │ │ │ ├── ForgotPassword │ │ │ │ └── ForgotPassword │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── FundCampaignPledge │ │ │ │ ├── FundCampaignPledge │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── PledgesMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_DELETE_PLEDGE_ERROR.md │ │ │ │ │ │ ├── MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md │ │ │ │ │ │ ├── PLEDGE_MODAL_ERROR_MOCKS.md │ │ │ │ │ │ └── PLEDGE_MODAL_MOCKS.md │ │ │ │ └── deleteModal │ │ │ │ │ └── PledgeDeleteModal │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceDeletePledgeModal.md │ │ │ ├── Leaderboard │ │ │ │ ├── Leaderboard.mocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ └── MOCKS.md │ │ │ │ └── Leaderboard │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── ManageTag │ │ │ │ ├── ManageTag │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── ManageTagMockComponents │ │ │ │ │ ├── MockAddPeopleToTag │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── MockTagActions │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── ManageTagMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ └── MOCKS_ERROR_ASSIGNED_MEMBERS.md │ │ │ │ ├── editModal │ │ │ │ │ └── EditUserTagModal │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceEditUserTagModalProps.md │ │ │ │ ├── removeModal │ │ │ │ │ └── RemoveUserTagModal │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceRemoveUserTagModalProps.md │ │ │ │ └── unassignModal │ │ │ │ │ └── UnassignUserTagModal │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceUnassignUserTagModalProps.md │ │ │ ├── MemberDetail │ │ │ │ ├── MemberDetail │ │ │ │ │ └── functions │ │ │ │ │ │ ├── default.md │ │ │ │ │ │ ├── getLanguageName.md │ │ │ │ │ │ └── prettyDate.md │ │ │ │ └── MemberDetailMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── ERROR_MOCK.md │ │ │ │ │ ├── MOCKS1.md │ │ │ │ │ ├── MOCKS2.md │ │ │ │ │ ├── MOCKS3.md │ │ │ │ │ ├── MOCK_FILE.md │ │ │ │ │ └── UPDATE_MOCK.md │ │ │ ├── OrgList │ │ │ │ ├── OrgList │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── OrgListMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_ADMIN.md │ │ │ │ │ │ ├── MOCKS_EMPTY.md │ │ │ │ │ │ └── MOCKS_WITH_ERROR.md │ │ │ │ └── modal │ │ │ │ │ └── OrganizationModal │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceOrganizationModalProps.md │ │ │ ├── OrgPost │ │ │ │ ├── OrgPost │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── Posts │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrgSettings │ │ │ │ ├── OrgSettings.mocks │ │ │ │ │ └── variables │ │ │ │ │ │ └── MOCKS.md │ │ │ │ └── OrgSettings │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrganizationActionItems │ │ │ │ ├── OrganizationActionItem.mocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_EMPTY.md │ │ │ │ │ │ └── MOCKS_ERROR.md │ │ │ │ ├── OrganizationActionItems │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── itemDeleteModal │ │ │ │ │ └── ItemDeleteModal │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceItemDeleteModalProps.md │ │ │ │ ├── itemModal │ │ │ │ │ └── ItemModal │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceItemModalProps.md │ │ │ │ ├── itemUpdateModal │ │ │ │ │ └── ItemUpdateStatusModal │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceItemUpdateStatusModalProps.md │ │ │ │ ├── itemViewModal │ │ │ │ │ └── ItemViewModal │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceViewModalProps.md │ │ │ │ └── testObject.mocks │ │ │ │ │ └── variables │ │ │ │ │ ├── actionItemCategory1.md │ │ │ │ │ ├── actionItemCategory2.md │ │ │ │ │ ├── actionItemCategoryListQuery.md │ │ │ │ │ ├── baseActionItem.md │ │ │ │ │ ├── groupListQuery.md │ │ │ │ │ ├── itemWithGroup.md │ │ │ │ │ ├── itemWithUser.md │ │ │ │ │ ├── itemWithUserImage.md │ │ │ │ │ ├── itemWithVolunteer.md │ │ │ │ │ ├── itemWithVolunteerImage.md │ │ │ │ │ ├── memberListQuery.md │ │ │ │ │ └── volunteerListQuery.md │ │ │ ├── OrganizationDashboard │ │ │ │ ├── Leaderboard │ │ │ │ │ └── Leaderboard.mocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ └── MOCKS.md │ │ │ │ ├── OrganizationDashboard │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── OrganizationDashboardMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ ├── MIXED_REQUESTS_MOCK.md │ │ │ │ │ └── MOCKS.md │ │ │ ├── OrganizationEvents │ │ │ │ ├── OrganizationEvents │ │ │ │ │ ├── enumerations │ │ │ │ │ │ └── ViewType.md │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── OrganizationEventsMocks │ │ │ │ │ └── variables │ │ │ │ │ └── MOCKS.md │ │ │ ├── OrganizationFundCampaign │ │ │ │ ├── OrganizationFundCampagins │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── OrganizationFundCampaignMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ └── MOCK_ERROR.md │ │ │ │ └── modal │ │ │ │ │ └── CampaignModal │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceCampaignModal.md │ │ │ ├── OrganizationFunds │ │ │ │ ├── OrganizationFunds │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── OrganizationFundsMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_ERROR.md │ │ │ │ │ │ └── NO_FUNDS.md │ │ │ │ └── modal │ │ │ │ │ └── FundModal │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceFundModal.md │ │ │ ├── OrganizationPeople │ │ │ │ ├── MockDataTypes │ │ │ │ │ └── type-aliases │ │ │ │ │ │ └── TestMock.md │ │ │ │ ├── OrganizationPeople │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── addMember │ │ │ │ │ └── AddMember │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrganizationTags │ │ │ │ ├── OrganizationTags │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── OrganizationTagsMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ ├── MOCKS_EMPTY.md │ │ │ │ │ ├── MOCKS_ERROR.md │ │ │ │ │ ├── MOCKS_ERROR_ERROR_TAG.md │ │ │ │ │ ├── MOCKS_NO_MORE_PAGES.md │ │ │ │ │ ├── MOCKS_NULL_END_CURSOR.md │ │ │ │ │ └── MOCKS_UNDEFINED_USER_TAGS.md │ │ │ ├── OrganizationVenues │ │ │ │ └── OrganizationVenues │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── PageNotFound │ │ │ │ └── PageNotFound │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── Requests │ │ │ │ └── RequestsMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ ├── EMPTY_REQUEST_MOCKS.md │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ ├── MOCKS2.md │ │ │ │ │ ├── MOCKS3.md │ │ │ │ │ ├── MOCKS4.md │ │ │ │ │ ├── MOCKS_WITH_ERROR.md │ │ │ │ │ └── UPDATED_MOCKS.md │ │ │ ├── SubTags │ │ │ │ ├── SubTags │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── SubTagsMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ └── MOCKS_ERROR_SUB_TAGS.md │ │ │ ├── UserPortal │ │ │ │ ├── Campaigns │ │ │ │ │ ├── Campaigns │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── CampaignsMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ └── USER_FUND_CAMPAIGNS_ERROR.md │ │ │ │ ├── Chat │ │ │ │ │ └── Chat │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── Donate │ │ │ │ │ └── Donate │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── Events │ │ │ │ │ └── Events │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── Organizations │ │ │ │ │ └── Organizations │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── People │ │ │ │ │ └── People │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── Pledges │ │ │ │ │ ├── Pledges │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── PledgesMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ └── USER_PLEDGES_ERROR.md │ │ │ │ ├── Posts │ │ │ │ │ └── Posts │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── Settings │ │ │ │ │ ├── ProfileHeader │ │ │ │ │ │ └── ProfileHeader │ │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── ProfileImageSection │ │ │ │ │ │ └── ProfileImageSection │ │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── Settings │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── SettingsMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ │ ├── MOCKS1.md │ │ │ │ │ │ │ ├── MOCKS2.md │ │ │ │ │ │ │ ├── UPDATE_MOCK.md │ │ │ │ │ │ │ └── errorMock.md │ │ │ │ │ ├── SideToggle │ │ │ │ │ │ └── SideToggle │ │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── UserDetails │ │ │ │ │ │ └── UserDetails │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── UserScreen │ │ │ │ │ └── UserScreen │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── Volunteer │ │ │ │ │ ├── Actions │ │ │ │ │ └── Actions.mocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ └── MOCKS.md │ │ │ │ │ ├── Groups │ │ │ │ │ ├── GroupModal │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ └── InterfaceGroupModal.md │ │ │ │ │ ├── Groups.mocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ │ └── UPDATE_ERROR_MOCKS.md │ │ │ │ │ └── Groups │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── Invitations │ │ │ │ │ ├── Invitations.mocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ │ └── UPDATE_ERROR_MOCKS.md │ │ │ │ │ └── Invitations │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── UpcomingEvents │ │ │ │ │ ├── UpcomingEvents.mocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── CREATE_ERROR_MOCKS.md │ │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ │ └── MOCKS.md │ │ │ │ │ └── UpcomingEvents │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ └── VolunteerManagement │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ └── Users │ │ │ │ ├── Organization.mocks │ │ │ │ ├── functions │ │ │ │ │ └── generateMockUser.md │ │ │ │ └── variables │ │ │ │ │ ├── MOCK_USERS.md │ │ │ │ │ ├── MOCK_USERS2.md │ │ │ │ │ ├── createAddress.md │ │ │ │ │ └── createCreator.md │ │ │ │ ├── User.mocks │ │ │ │ └── variables │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ └── MOCKS2.md │ │ │ │ ├── Users │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ │ └── UsersMocks.mocks │ │ │ │ └── variables │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ ├── MOCKS_NEW.md │ │ │ │ ├── MOCKS_NEW2.md │ │ │ │ ├── MOCKS_NEW3.md │ │ │ │ └── MOCKS_NEW_2.md │ │ ├── setup │ │ │ ├── askAndSetDockerOption │ │ │ │ └── askAndSetDockerOption │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── askAndUpdatePort │ │ │ │ └── askAndUpdatePort │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── askForCustomPort │ │ │ │ └── askForCustomPort │ │ │ │ │ └── functions │ │ │ │ │ ├── askForCustomPort.md │ │ │ │ │ ├── reservedPortWarning.md │ │ │ │ │ └── validatePort.md │ │ │ ├── askForDocker │ │ │ │ └── askForDocker │ │ │ │ │ └── functions │ │ │ │ │ ├── askAndUpdateTalawaApiUrl.md │ │ │ │ │ └── askForDocker.md │ │ │ ├── askForTalawaApiUrl │ │ │ │ └── askForTalawaApiUrl │ │ │ │ │ └── functions │ │ │ │ │ └── askForTalawaApiUrl.md │ │ │ ├── checkConnection │ │ │ │ └── checkConnection │ │ │ │ │ └── functions │ │ │ │ │ └── checkConnection.md │ │ │ ├── checkEnvFile │ │ │ │ └── checkEnvFile │ │ │ │ │ └── functions │ │ │ │ │ ├── checkEnvFile.md │ │ │ │ │ └── modifyEnvFile.md │ │ │ ├── setup │ │ │ │ └── functions │ │ │ │ │ ├── askAndSetRecaptcha.md │ │ │ │ │ └── main.md │ │ │ ├── updateEnvFile │ │ │ │ └── updateEnvFile │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ └── validateRecaptcha │ │ │ │ └── validateRecaptcha │ │ │ │ └── functions │ │ │ │ └── validateRecaptcha.md │ │ ├── state │ │ │ ├── action-creators │ │ │ │ └── functions │ │ │ │ │ └── updateTargets.md │ │ │ ├── helpers │ │ │ │ └── Action │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceAction.md │ │ │ ├── hooks │ │ │ │ └── functions │ │ │ │ │ └── useAppDispatch.md │ │ │ ├── reducers │ │ │ │ ├── functions │ │ │ │ │ └── reducers.md │ │ │ │ ├── routesReducer │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ └── type-aliases │ │ │ │ │ │ ├── ComponentType.md │ │ │ │ │ │ ├── SubTargetType.md │ │ │ │ │ │ └── TargetsType.md │ │ │ │ ├── type-aliases │ │ │ │ │ └── RootState.md │ │ │ │ └── userRoutesReducer │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── type-aliases │ │ │ │ │ ├── ComponentType.md │ │ │ │ │ ├── SubTargetType.md │ │ │ │ │ └── TargetsType.md │ │ │ └── store │ │ │ │ ├── type-aliases │ │ │ │ └── AppDispatch.md │ │ │ │ └── variables │ │ │ │ └── store.md │ │ ├── subComponents │ │ │ ├── SearchBar │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── SearchingButton │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ └── SortingButton │ │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── types │ │ │ ├── Advertisement │ │ │ │ ├── interface │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── InterfaceAddOnEntryProps.md │ │ │ │ │ │ ├── InterfaceAddOnRegisterProps.md │ │ │ │ │ │ └── InterfaceFormStateTypes.md │ │ │ │ └── type │ │ │ │ │ ├── enumerations │ │ │ │ │ └── AdvertisementType.md │ │ │ │ │ └── type-aliases │ │ │ │ │ ├── Advertisement.md │ │ │ │ │ ├── AdvertisementAttachment.md │ │ │ │ │ ├── AdvertisementEdge.md │ │ │ │ │ ├── AdvertisementsConnection.md │ │ │ │ │ ├── CreateAdvertisementInput.md │ │ │ │ │ └── CreateAdvertisementPayload.md │ │ │ ├── Agenda │ │ │ │ ├── interface │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── InterfaceAgendaItemCategoryInfo.md │ │ │ │ │ │ ├── InterfaceAgendaItemsCreateModalProps.md │ │ │ │ │ │ ├── InterfaceAgendaItemsDeleteModalProps.md │ │ │ │ │ │ ├── InterfaceAgendaItemsPreviewModalProps.md │ │ │ │ │ │ ├── InterfaceAgendaItemsUpdateModalProps.md │ │ │ │ │ │ ├── InterfaceCreateFormStateType.md │ │ │ │ │ │ └── InterfaceFormStateType.md │ │ │ │ └── type │ │ │ │ │ └── type-aliases │ │ │ │ │ └── AgendaCategory.md │ │ │ ├── Avatar │ │ │ │ └── interface │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceAvatarProps.md │ │ │ ├── Chat │ │ │ │ ├── interface │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── InterfaceContactCardProps.md │ │ │ │ │ │ └── InterfaceGroupChatDetailsProps.md │ │ │ │ └── type │ │ │ │ │ └── type-aliases │ │ │ │ │ ├── ChatInput.md │ │ │ │ │ ├── DirectMessage.md │ │ │ │ │ └── GroupChat.md │ │ │ ├── CheckIn │ │ │ │ ├── interface │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── InterfaceAttendeeCheckIn.md │ │ │ │ │ │ ├── InterfaceAttendeeQueryResponse.md │ │ │ │ │ │ ├── InterfaceModalProp.md │ │ │ │ │ │ ├── InterfaceTableCheckIn.md │ │ │ │ │ │ ├── InterfaceTableData.md │ │ │ │ │ │ └── InterfaceUser.md │ │ │ │ └── type │ │ │ │ │ └── type-aliases │ │ │ │ │ ├── CheckIn.md │ │ │ │ │ ├── CheckInInput.md │ │ │ │ │ └── CheckInStatus.md │ │ │ ├── Comment │ │ │ │ ├── interface │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceCommentCardProps.md │ │ │ │ └── type │ │ │ │ │ └── type-aliases │ │ │ │ │ ├── Comment.md │ │ │ │ │ └── CommentInput.md │ │ │ ├── Contribution │ │ │ │ └── interface │ │ │ │ │ └── interfaces │ │ │ │ │ ├── InterfaceContriStatsProps.md │ │ │ │ │ └── InterfaceOrgContriCardsProps.md │ │ │ ├── Donation │ │ │ │ ├── interface │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── InterfaceDonation.md │ │ │ │ │ │ └── InterfaceDonationCardProps.md │ │ │ │ └── types │ │ │ │ │ └── type-aliases │ │ │ │ │ ├── Donation.md │ │ │ │ │ └── DonationWhereInput.md │ │ │ ├── DropDown │ │ │ │ └── interface │ │ │ │ │ └── interfaces │ │ │ │ │ ├── InterfaceCollapsibleDropdown.md │ │ │ │ │ └── InterfaceDropDownProps.md │ │ │ ├── Event │ │ │ │ ├── interface │ │ │ │ │ ├── interfaces │ │ │ │ │ │ ├── InterfaceAttendanceStatisticsModalProps.md │ │ │ │ │ │ ├── InterfaceCalendarProps.md │ │ │ │ │ │ ├── InterfaceDeleteEventModalProps.md │ │ │ │ │ │ ├── InterfaceEvent.md │ │ │ │ │ │ ├── InterfaceEventHeaderProps.md │ │ │ │ │ │ ├── InterfaceEventsAttendedMemberModalProps.md │ │ │ │ │ │ ├── InterfaceIOrgList.md │ │ │ │ │ │ ├── InterfaceMember.md │ │ │ │ │ │ ├── InterfacePreviewEventModalProps.md │ │ │ │ │ │ ├── InterfaceRecurringEvent.md │ │ │ │ │ │ ├── InterfaceStatsModal.md │ │ │ │ │ │ └── InterfaceUpdateEventModalProps.md │ │ │ │ │ └── variables │ │ │ │ │ │ ├── FilterPeriod.md │ │ │ │ │ │ └── Role.md │ │ │ │ ├── type │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ ├── Event.md │ │ │ │ │ │ ├── EventAttendeeInput.md │ │ │ │ │ │ ├── EventInput.md │ │ │ │ │ │ ├── EventOrderByInput.md │ │ │ │ │ │ ├── EventVolunteer.md │ │ │ │ │ │ ├── EventVolunteerInput.md │ │ │ │ │ │ ├── EventVolunteerResponse.md │ │ │ │ │ │ ├── EventWhereInput.md │ │ │ │ │ │ ├── Feedback.md │ │ │ │ │ │ ├── FeedbackInput.md │ │ │ │ │ │ └── User.md │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EventOrderByInput.md │ │ │ │ │ │ └── EventVolunteerResponse.md │ │ │ │ └── utils │ │ │ │ │ ├── interfaces │ │ │ │ │ └── InterfaceHoliday.md │ │ │ │ │ └── variables │ │ │ │ │ ├── FilterPeriod.md │ │ │ │ │ ├── holidays.md │ │ │ │ │ ├── hours.md │ │ │ │ │ ├── months.md │ │ │ │ │ └── weekdays.md │ │ │ ├── Member │ │ │ │ └── interface │ │ │ │ │ └── interfaces │ │ │ │ │ ├── InterfaceMemberRequestCardProps.md │ │ │ │ │ └── InterfaceRequestsListItem.md │ │ │ ├── Organization │ │ │ │ ├── interface │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── InterfaceOrgPeopleListCardProps.md │ │ │ │ │ │ ├── InterfaceOrgPostCardProps.md │ │ │ │ │ │ ├── InterfaceOrganizationCardProps.md │ │ │ │ │ │ └── InterfaceOrganizationCardStartProps.md │ │ │ │ └── type │ │ │ │ │ └── type-aliases │ │ │ │ │ ├── Organization.md │ │ │ │ │ ├── OrganizationCustomField.md │ │ │ │ │ └── OrganizationInput.md │ │ │ ├── Post │ │ │ │ ├── interface │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── InterfaceAttachment.md │ │ │ │ │ │ ├── InterfaceCreator.md │ │ │ │ │ │ ├── InterfaceMutationCreatePostInput.md │ │ │ │ │ │ ├── InterfaceOrganization.md │ │ │ │ │ │ ├── InterfaceOrganizationPostListData.md │ │ │ │ │ │ ├── InterfacePageInfo.md │ │ │ │ │ │ ├── InterfacePost.md │ │ │ │ │ │ ├── InterfacePostCard.md │ │ │ │ │ │ ├── InterfacePostConnection.md │ │ │ │ │ │ ├── InterfacePostCreator.md │ │ │ │ │ │ ├── InterfacePostEdge.md │ │ │ │ │ │ └── InterfacePostNode.md │ │ │ │ └── type │ │ │ │ │ ├── type-aliases │ │ │ │ │ ├── Post.md │ │ │ │ │ ├── PostComments.md │ │ │ │ │ ├── PostInput.md │ │ │ │ │ ├── PostLikes.md │ │ │ │ │ ├── PostNode.md │ │ │ │ │ ├── PostOrderByInput.md │ │ │ │ │ ├── PostUpdateInput.md │ │ │ │ │ └── PostWhereInput.md │ │ │ │ │ └── variables │ │ │ │ │ └── PostOrderByInput.md │ │ │ ├── Tag │ │ │ │ ├── interface │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── InterfaceAddPeopleToTagProps.md │ │ │ │ │ │ ├── InterfaceBaseFetchMoreOptions.md │ │ │ │ │ │ ├── InterfaceBaseQueryResult.md │ │ │ │ │ │ ├── InterfaceMemberData.md │ │ │ │ │ │ ├── InterfacePaginationVariables.md │ │ │ │ │ │ ├── InterfaceQueryUserTagsMembersToAssignTo.md │ │ │ │ │ │ ├── InterfaceTagMembersData.md │ │ │ │ │ │ └── InterfaceTagUsersToAssignToQuery.md │ │ │ │ └── utils │ │ │ │ │ └── variables │ │ │ │ │ ├── TAGS_QUERY_DATA_CHUNK_SIZE.md │ │ │ │ │ └── dataGridStyle.md │ │ │ ├── User │ │ │ │ ├── interface │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── InterfaceUser.md │ │ │ │ │ │ └── InterfaceUserAttendee.md │ │ │ │ └── type │ │ │ │ │ └── type-aliases │ │ │ │ │ ├── Address.md │ │ │ │ │ ├── AppUserProfile.md │ │ │ │ │ ├── CreateUserFamilyInput.md │ │ │ │ │ ├── User.md │ │ │ │ │ ├── UserInput.md │ │ │ │ │ └── UserPhone.md │ │ │ ├── actionItem │ │ │ │ └── type-aliases │ │ │ │ │ ├── ActionItem.md │ │ │ │ │ ├── ActionItemCategory.md │ │ │ │ │ ├── CreateActionItemInput.md │ │ │ │ │ └── UpdateActionItemInput.md │ │ │ ├── address │ │ │ │ └── type-aliases │ │ │ │ │ ├── Address.md │ │ │ │ │ └── AddressInput.md │ │ │ ├── membership │ │ │ │ └── type-aliases │ │ │ │ │ └── MembershipRequest.md │ │ │ ├── pagination │ │ │ │ └── type-aliases │ │ │ │ │ └── DefaultConnectionPageInfo.md │ │ │ └── venue │ │ │ │ └── type-aliases │ │ │ │ ├── EditVenueInput.md │ │ │ │ ├── Venue.md │ │ │ │ └── VenueInput.md │ │ └── utils │ │ │ ├── MinioDownload │ │ │ └── functions │ │ │ │ └── useMinioDownload.md │ │ │ ├── MinioUpload │ │ │ └── functions │ │ │ │ └── useMinioUpload.md │ │ │ ├── StaticMockLink │ │ │ ├── classes │ │ │ │ └── StaticMockLink.md │ │ │ ├── functions │ │ │ │ └── mockSingleLink.md │ │ │ └── interfaces │ │ │ │ └── InterfaceMockApolloLink.md │ │ │ ├── chartToPdf │ │ │ └── functions │ │ │ │ ├── exportDemographicsToCSV.md │ │ │ │ ├── exportToCSV.md │ │ │ │ └── exportTrendsToCSV.md │ │ │ ├── convertToBase64 │ │ │ └── functions │ │ │ │ └── default.md │ │ │ ├── currency │ │ │ └── variables │ │ │ │ ├── currencyOptions.md │ │ │ │ └── currencySymbols.md │ │ │ ├── dateFormatter │ │ │ └── functions │ │ │ │ └── formatDate.md │ │ │ ├── errorHandler │ │ │ └── functions │ │ │ │ └── errorHandler.md │ │ │ ├── fieldTypes │ │ │ └── variables │ │ │ │ └── default.md │ │ │ ├── fileValidation │ │ │ └── functions │ │ │ │ └── validateFile.md │ │ │ ├── filehash │ │ │ └── functions │ │ │ │ └── calculateFileHash.md │ │ │ ├── formEnumFields │ │ │ └── variables │ │ │ │ ├── countryOptions.md │ │ │ │ ├── educationGradeEnum.md │ │ │ │ ├── employmentStatusEnum.md │ │ │ │ ├── genderEnum.md │ │ │ │ ├── maritalStatusEnum.md │ │ │ │ └── userRoleEnum.md │ │ │ ├── getOrganizationId │ │ │ └── functions │ │ │ │ └── default.md │ │ │ ├── getRefreshToken │ │ │ └── functions │ │ │ │ └── refreshToken.md │ │ │ ├── interfaces │ │ │ ├── enumerations │ │ │ │ └── Iso3166Alpha2CountryCode.md │ │ │ └── interfaces │ │ │ │ ├── InterfaceActionItemCategoryInfo.md │ │ │ │ ├── InterfaceActionItemCategoryList.md │ │ │ │ ├── InterfaceActionItemInfo.md │ │ │ │ ├── InterfaceActionItemList.md │ │ │ │ ├── InterfaceAddOnSpotAttendeeProps.md │ │ │ │ ├── InterfaceAddress.md │ │ │ │ ├── InterfaceAdvertisementAttachmentPg.md │ │ │ │ ├── InterfaceAdvertisementPg.md │ │ │ │ ├── InterfaceAgendaItemCategoryInfo.md │ │ │ │ ├── InterfaceAgendaItemCategoryList.md │ │ │ │ ├── InterfaceAgendaItemInfo.md │ │ │ │ ├── InterfaceAgendaItemList.md │ │ │ │ ├── InterfaceBaseEvent.md │ │ │ │ ├── InterfaceCampaignInfo.md │ │ │ │ ├── InterfaceCampaignInfoPG.md │ │ │ │ ├── InterfaceChatMessagePg.md │ │ │ │ ├── InterfaceChatPg.md │ │ │ │ ├── InterfaceCreateFund.md │ │ │ │ ├── InterfaceCreatePledge.md │ │ │ │ ├── InterfaceCreateVolunteerGroup.md │ │ │ │ ├── InterfaceCurrentUserTypePG.md │ │ │ │ ├── InterfaceCustomFieldData.md │ │ │ │ ├── InterfaceEventAttachmentPg.md │ │ │ │ ├── InterfaceEventPg.md │ │ │ │ ├── InterfaceEventVolunteerInfo.md │ │ │ │ ├── InterfaceFormData.md │ │ │ │ ├── InterfaceFundInfo.md │ │ │ │ ├── InterfaceFundPg.md │ │ │ │ ├── InterfaceMapType.md │ │ │ │ ├── InterfaceMemberInfo.md │ │ │ │ ├── InterfaceMembersList.md │ │ │ │ ├── InterfaceOrgConnectionInfoType.md │ │ │ │ ├── InterfaceOrgConnectionInfoTypePG.md │ │ │ │ ├── InterfaceOrgInfoTypePG.md │ │ │ │ ├── InterfaceOrganizationAdvertisementsConnectionEdgePg.md │ │ │ │ ├── InterfaceOrganizationAdvertisementsConnectionPg.md │ │ │ │ ├── InterfaceOrganizationBlockedUsersConnectionEdgePg.md │ │ │ │ ├── InterfaceOrganizationBlockedUsersConnectionPg.md │ │ │ │ ├── InterfaceOrganizationEventsConnectionEdgePg.md │ │ │ │ ├── InterfaceOrganizationEventsConnectionPg.md │ │ │ │ ├── InterfaceOrganizationFundsConnectionEdgePg.md │ │ │ │ ├── InterfaceOrganizationFundsConnectionPg.md │ │ │ │ ├── InterfaceOrganizationMembersConnectionEdgePg.md │ │ │ │ ├── InterfaceOrganizationMembersConnectionPg.md │ │ │ │ ├── InterfaceOrganizationPg.md │ │ │ │ ├── InterfaceOrganizationPinnedPostsConnectionEdgePg.md │ │ │ │ ├── InterfaceOrganizationPinnedPostsConnectionPg.md │ │ │ │ ├── InterfaceOrganizationPostsConnectionEdgePg.md │ │ │ │ ├── InterfaceOrganizationPostsConnectionPg.md │ │ │ │ ├── InterfaceOrganizationTagFoldersConnectionEdgePg.md │ │ │ │ ├── InterfaceOrganizationTagFoldersConnectionPg.md │ │ │ │ ├── InterfaceOrganizationTagsConnectionEdgePg.md │ │ │ │ ├── InterfaceOrganizationTagsConnectionPg.md │ │ │ │ ├── InterfaceOrganizationVenuesConnectionEdgePg.md │ │ │ │ ├── InterfaceOrganizationVenuesConnectionPg.md │ │ │ │ ├── InterfacePageInfoPg.md │ │ │ │ ├── InterfacePaginationArgs.md │ │ │ │ ├── InterfacePledgeInfo.md │ │ │ │ ├── InterfacePledgeInfoPG.md │ │ │ │ ├── InterfacePostCard.md │ │ │ │ ├── InterfacePostForm.md │ │ │ │ ├── InterfacePostPg.md │ │ │ │ ├── InterfaceQueryBlockPageMemberListItem.md │ │ │ │ ├── InterfaceQueryFundCampaignsPledges.md │ │ │ │ ├── InterfaceQueryMembershipRequestsListItem.md │ │ │ │ ├── InterfaceQueryOrganizationAdvertisementListItem.md │ │ │ │ ├── InterfaceQueryOrganizationEventListItem.md │ │ │ │ ├── InterfaceQueryOrganizationFundCampaigns.md │ │ │ │ ├── InterfaceQueryOrganizationListObject.md │ │ │ │ ├── InterfaceQueryOrganizationPostListItem.md │ │ │ │ ├── InterfaceQueryOrganizationUserTags.md │ │ │ │ ├── InterfaceQueryOrganizationsListObject.md │ │ │ │ ├── InterfaceQueryUserListItem.md │ │ │ │ ├── InterfaceQueryUserTagChildTags.md │ │ │ │ ├── InterfaceQueryUserTagsAssignedMembers.md │ │ │ │ ├── InterfaceQueryUserTagsMembersToAssignTo.md │ │ │ │ ├── InterfaceQueryVenueListItem.md │ │ │ │ ├── InterfaceTagData.md │ │ │ │ ├── InterfaceTagFolderPg.md │ │ │ │ ├── InterfaceTagPg.md │ │ │ │ ├── InterfaceUserCampaign.md │ │ │ │ ├── InterfaceUserEvents.md │ │ │ │ ├── InterfaceUserInfo.md │ │ │ │ ├── InterfaceUserInfo_PG.md │ │ │ │ ├── InterfaceUserPg.md │ │ │ │ ├── InterfaceUserType.md │ │ │ │ ├── InterfaceUserTypePG.md │ │ │ │ ├── InterfaceVenuePg.md │ │ │ │ ├── InterfaceVolunteerGroupInfo.md │ │ │ │ ├── InterfaceVolunteerMembership.md │ │ │ │ └── InterfaceVolunteerRank.md │ │ │ ├── languages │ │ │ └── variables │ │ │ │ ├── languageArray.md │ │ │ │ └── languages.md │ │ │ ├── linkValidator │ │ │ └── functions │ │ │ │ └── isValidLink.md │ │ │ ├── organizationTagsUtils │ │ │ ├── interfaces │ │ │ │ ├── InterfaceOrganizationSubTagsQuery.md │ │ │ │ ├── InterfaceOrganizationTagsQuery.md │ │ │ │ ├── InterfaceTagAssignedMembersQuery.md │ │ │ │ └── InterfaceTagUsersToAssignToQuery.md │ │ │ ├── type-aliases │ │ │ │ ├── SortedByType.md │ │ │ │ └── TagActionType.md │ │ │ └── variables │ │ │ │ ├── TAGS_QUERY_DATA_CHUNK_SIZE.md │ │ │ │ └── dataGridStyle.md │ │ │ ├── passwordValidator │ │ │ └── functions │ │ │ │ └── validatePassword.md │ │ │ ├── recurrenceUtils │ │ │ ├── recurrenceConstants │ │ │ │ └── variables │ │ │ │ │ ├── Days.md │ │ │ │ │ ├── allInstances.md │ │ │ │ │ ├── dayNames.md │ │ │ │ │ ├── daysOptions.md │ │ │ │ │ ├── endsAfter.md │ │ │ │ │ ├── endsNever.md │ │ │ │ │ ├── endsOn.md │ │ │ │ │ ├── frequencies.md │ │ │ │ │ ├── mondayToFriday.md │ │ │ │ │ ├── monthNames.md │ │ │ │ │ ├── recurrenceEndOptions.md │ │ │ │ │ ├── recurringEventMutationOptions.md │ │ │ │ │ ├── thisAndFollowingInstances.md │ │ │ │ │ ├── thisInstance.md │ │ │ │ │ └── weekDayOccurences.md │ │ │ ├── recurrenceTypes │ │ │ │ ├── enumerations │ │ │ │ │ ├── Frequency.md │ │ │ │ │ ├── RecurrenceEndOption.md │ │ │ │ │ ├── RecurringEventMutationType.md │ │ │ │ │ └── WeekDays.md │ │ │ │ └── interfaces │ │ │ │ │ ├── InterfaceRecurrenceRule.md │ │ │ │ │ └── InterfaceRecurrenceRuleState.md │ │ │ └── recurrenceUtilityFunctions │ │ │ │ └── functions │ │ │ │ ├── getRecurrenceRuleText.md │ │ │ │ ├── getWeekDayOccurenceInMonth.md │ │ │ │ ├── hasRecurrenceRuleChanged.md │ │ │ │ ├── haveInstanceDatesChanged.md │ │ │ │ └── isLastOccurenceOfWeekDay.md │ │ │ ├── sanitizeAvatar │ │ │ └── functions │ │ │ │ └── sanitizeAvatars.md │ │ │ ├── timezoneUtils │ │ │ ├── dateTimeConfig │ │ │ │ └── variables │ │ │ │ │ └── dateTimeFields.md │ │ │ └── dateTimeMiddleware │ │ │ │ └── variables │ │ │ │ ├── requestMiddleware.md │ │ │ │ └── responseMiddleware.md │ │ │ ├── urlToFile │ │ │ └── functions │ │ │ │ └── urlToFile.md │ │ │ ├── useLocalstorage │ │ │ └── functions │ │ │ │ ├── getItem.md │ │ │ │ ├── getStorageKey.md │ │ │ │ ├── removeItem.md │ │ │ │ ├── setItem.md │ │ │ │ └── useLocalStorage.md │ │ │ └── useSession │ │ │ └── functions │ │ │ └── default.md │ └── docs │ │ ├── developer-resources │ │ ├── introduction.md │ │ ├── minio.md │ │ ├── operation.md │ │ ├── testing.md │ │ └── troubleshooting.md │ │ ├── getting-started │ │ ├── installation.md │ │ └── operation.md │ │ ├── introduction.md │ │ └── plugins │ │ ├── implementing-plugins-example.md │ │ ├── implementing-plugins.md │ │ └── plugin-architecture.md ├── docusaurus.config.ts ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ └── layout │ │ │ └── HeaderHero.tsx │ ├── css │ │ └── custom.css │ ├── pages │ │ └── index.tsx │ └── utils │ │ ├── ActionButton.tsx │ │ └── HomeCallToAction.tsx └── static │ └── img │ ├── docs │ └── plugin │ │ ├── plugin-store-navbar.PNG │ │ ├── plugin-types.PNG │ │ ├── store.PNG │ │ └── talawa.PNG │ ├── icons │ └── logo.png │ └── markdown │ ├── installation │ ├── REACT_SITE_KEY.webp │ ├── Register.png │ ├── install1.png │ ├── install2.png │ └── jest-preview.webp │ └── minio │ └── architecture.png ├── eslint.config.js ├── fix-readme-links.js ├── fix-repo-url.js ├── package-lock.json ├── package.json ├── public ├── images │ └── svg │ │ ├── angleRight.svg │ │ ├── attendees.svg │ │ ├── feedback.svg │ │ ├── options-outline.svg │ │ └── organization.svg └── locales │ ├── en │ ├── common.json │ └── translation.json │ ├── fr │ ├── common.json │ └── translation.json │ ├── hi │ ├── common.json │ └── translation.json │ ├── sp │ ├── common.json │ └── translation.json │ └── zh │ ├── common.json │ └── translation.json ├── pyproject.toml ├── renovate.json ├── schema.graphql ├── scripts ├── __mocks__ │ ├── @dicebear │ │ ├── collection.ts │ │ └── core.ts │ └── @pdfme │ │ └── generator.spec.ts └── githooks │ ├── check-localstorage-usage.ts │ └── update-toc.js ├── src ├── App.spec.tsx ├── App.tsx ├── Constant │ └── fileUpload.ts ├── GraphQl │ ├── Mutations │ │ ├── AdvertisementMutations.ts │ │ ├── CampaignMutation.ts │ │ ├── FundMutation.ts │ │ ├── OrganizationMutations.ts │ │ ├── PledgeMutation.ts │ │ └── mutations.ts │ └── Queries │ │ ├── AdvertisementQueries.ts │ │ ├── OrganizationQueries.ts │ │ ├── PlugInQueries.ts │ │ ├── Queries.ts │ │ └── fundQueries.ts ├── assets │ └── css │ │ └── app.css ├── components │ ├── AddPeopleToTag │ │ ├── AddPeopleToTag.spec.tsx │ │ ├── AddPeopleToTag.tsx │ │ └── AddPeopleToTagsMocks.ts │ ├── Advertisements │ │ ├── Advertisements.spec.tsx │ │ ├── Advertisements.tsx │ │ ├── AdvertisementsMocks.ts │ │ ├── core │ │ │ ├── AdvertisementEntry │ │ │ │ ├── AdvertisementEntry.spec.tsx │ │ │ │ └── AdvertisementEntry.tsx │ │ │ └── AdvertisementRegister │ │ │ │ ├── AdvertisementRegister.spec.tsx │ │ │ │ ├── AdvertisementRegister.tsx │ │ │ │ └── AdvertisementRegisterMocks.ts │ │ └── skeleton │ │ │ ├── AdvertisementSkeleton.spec.tsx │ │ │ └── AdvertisementSkeleton.tsx │ ├── AgendaCategory │ │ ├── AgendaCategoryContainer.spec.tsx │ │ ├── AgendaCategoryContainer.tsx │ │ └── AgendaCategoryContainerMocks.ts │ ├── AgendaItems │ │ ├── AgendaItemsContainer.spec.tsx │ │ ├── AgendaItemsContainer.tsx │ │ ├── AgendaItemsMocks.ts │ │ ├── Create │ │ │ ├── AgendaItemsCreateModal.spec.tsx │ │ │ └── AgendaItemsCreateModal.tsx │ │ ├── Delete │ │ │ ├── AgendaItemsDeleteModal.spec.tsx │ │ │ └── AgendaItemsDeleteModal.tsx │ │ ├── Preview │ │ │ ├── AgendaItemsPreviewModal.spec.tsx │ │ │ └── AgendaItemsPreviewModal.tsx │ │ └── Update │ │ │ ├── AgendaItemsUpdateModal.spec.tsx │ │ │ └── AgendaItemsUpdateModal.tsx │ ├── Avatar │ │ ├── Avatar.spec.tsx │ │ └── Avatar.tsx │ ├── ChangeLanguageDropdown │ │ ├── ChangeLanguageDropDown.spec.tsx │ │ └── ChangeLanguageDropDown.tsx │ ├── CheckIn │ │ ├── CheckInMocks.ts │ │ ├── CheckInWrapper.spec.tsx │ │ ├── CheckInWrapper.tsx │ │ ├── Modal │ │ │ ├── CheckInModal.spec.tsx │ │ │ ├── CheckInModal.tsx │ │ │ └── Row │ │ │ │ ├── TableRow.spec.tsx │ │ │ │ └── TableRow.tsx │ │ └── tagTemplate.ts │ ├── CollapsibleDropdown │ │ ├── CollapsibleDropdown.spec.tsx │ │ └── CollapsibleDropdown.tsx │ ├── ContriStats │ │ └── ContriStats.tsx │ ├── CurrentHourIndicator │ │ └── CurrentHourIndicator.tsx │ ├── DynamicDropDown │ │ ├── DynamicDropDown.spec.tsx │ │ └── DynamicDropDown.tsx │ ├── EditCustomFieldDropDown │ │ ├── EditCustomFieldDropDown.spec.tsx │ │ └── EditCustomFieldDropDown.tsx │ ├── EventCalender │ │ ├── EventCalenderMocks.ts │ │ ├── Header │ │ │ ├── EventHeader.spec.tsx │ │ │ └── EventHeader.tsx │ │ ├── Monthly │ │ │ ├── EventCalendar.spec.tsx │ │ │ └── EventCalender.tsx │ │ └── Yearly │ │ │ ├── YearlyEventCalender.spec.tsx │ │ │ └── YearlyEventCalender.tsx │ ├── EventDashboardScreen │ │ ├── EventDashboardScreen.spec.tsx │ │ ├── EventDashboardScreen.tsx │ │ └── EventDashboardScreenMocks.ts │ ├── EventListCard │ │ ├── EventListCard.spec.tsx │ │ ├── EventListCard.tsx │ │ ├── EventListCardProps.ts │ │ └── Modal │ │ │ ├── Delete │ │ │ └── EventListCardDeleteModal.tsx │ │ │ ├── EventListCardMocks.ts │ │ │ ├── EventListCardModals.tsx │ │ │ ├── Preview │ │ │ └── EventListCardPreviewModal.tsx │ │ │ └── Update │ │ │ └── EventListCardUpdateModal.tsx │ ├── EventManagement │ │ ├── Dashboard │ │ │ ├── EventDashboard.spec.tsx │ │ │ └── EventDashboard.tsx │ │ ├── EventAgendaItems │ │ │ ├── EventAgendaItems.spec.tsx │ │ │ └── EventAgendaItems.tsx │ │ ├── EventAttendance │ │ │ ├── Attendance │ │ │ │ ├── EventAttendance.spec.tsx │ │ │ │ └── EventAttendance.tsx │ │ │ ├── AttendanceList │ │ │ │ ├── AttendedEventList.spec.tsx │ │ │ │ └── AttendedEventList.tsx │ │ │ ├── EventAttendanceMocks.ts │ │ │ └── Statistics │ │ │ │ ├── EventStatistics.spec.tsx │ │ │ │ └── EventStatistics.tsx │ │ └── EventRegistrant │ │ │ ├── EventRegistrants.spec.tsx │ │ │ └── EventRegistrants.tsx │ ├── EventRegistrantsModal │ │ ├── EventRegistrantsWrapper.spec.tsx │ │ ├── EventRegistrantsWrapper.tsx │ │ └── Modal │ │ │ ├── AddOnSpot │ │ │ ├── AddOnSpotAttendee.spec.tsx │ │ │ └── AddOnSpotAttendee.tsx │ │ │ ├── EventRegistrantsModal.spec.tsx │ │ │ └── EventRegistrantsModal.tsx │ ├── EventStats │ │ ├── EventStatsMocks.ts │ │ ├── EventStatsWrapper.spec.tsx │ │ ├── EventStatsWrapper.tsx │ │ ├── Statistics │ │ │ ├── AverageRating │ │ │ │ ├── AverageRating.spec.tsx │ │ │ │ └── AverageRating.tsx │ │ │ ├── EventStats.spec.tsx │ │ │ ├── EventStats.tsx │ │ │ ├── Feedback │ │ │ │ ├── Feedback.spec.tsx │ │ │ │ └── Feedback.tsx │ │ │ └── Review │ │ │ │ ├── Review.spec.tsx │ │ │ │ └── Review.tsx │ │ └── css │ │ │ ├── EventStats.module.css │ │ │ ├── EventStatsWrapper.module.css │ │ │ └── Loader.module.css │ ├── GroupChatDetails │ │ ├── GroupChatDetails.spec.tsx │ │ ├── GroupChatDetails.tsx │ │ └── GroupChatDetailsMocks.tsx │ ├── HolidayCards │ │ ├── HolidayCard.spec.tsx │ │ └── HolidayCard.tsx │ ├── IconComponent │ │ ├── IconComponent.spec.tsx │ │ └── IconComponent.tsx │ ├── InfiniteScrollLoader │ │ └── InfiniteScrollLoader.tsx │ ├── LeftDrawer │ │ ├── LeftDrawer.spec.tsx │ │ └── LeftDrawer.tsx │ ├── LeftDrawerOrg │ │ ├── LeftDrawerOrg.spec.tsx │ │ └── LeftDrawerOrg.tsx │ ├── Loader │ │ └── Loader.tsx │ ├── LoginPortalToggle │ │ ├── LoginPortalToggle.spec.tsx │ │ └── LoginPortalToggle.tsx │ ├── MemberActivity │ │ ├── Card │ │ │ ├── EventsAttendedCardItem.spec.tsx │ │ │ └── EventsAttendedCardItem.tsx │ │ ├── EventsAttendedByMember.spec.tsx │ │ ├── EventsAttendedByMember.tsx │ │ ├── MemberActivityMocks.ts │ │ └── Modal │ │ │ ├── CustomCell │ │ │ ├── customTableCell.spec.tsx │ │ │ └── customTableCell.tsx │ │ │ ├── EventsAttendedMemberModal.spec.tsx │ │ │ └── EventsAttendedMemberModal.tsx │ ├── MemberRequestCard │ │ ├── MemberRequestCard.spec.tsx │ │ ├── MemberRequestCard.tsx │ │ └── MemberRequestMocks.ts │ ├── NotFound │ │ └── NotFound.tsx │ ├── OrgAdminListCard │ │ ├── OrgAdminListCard.spec.tsx │ │ └── OrgAdminListCard.tsx │ ├── OrgContriCards │ │ └── OrgContriCards.tsx │ ├── OrgDelete │ │ └── OrgDelete.tsx │ ├── OrgListCard │ │ ├── OrgListCard.spec.tsx │ │ ├── OrgListCard.tsx │ │ ├── TruncatedText.tsx │ │ └── useDebounce.tsx │ ├── OrgPeopleListCard │ │ ├── OrgPeopleListCard.spec.tsx │ │ └── OrgPeopleListCard.tsx │ ├── OrgPostCard │ │ ├── DeleteModal │ │ │ ├── DeletePostModal.spec.tsx │ │ │ └── DeletePostModal.tsx │ │ ├── OrgPostCard.spec.tsx │ │ └── OrgPostCard.tsx │ ├── OrgSettings │ │ ├── ActionItemCategories │ │ │ ├── Modal │ │ │ │ ├── CategoryModal.spec.tsx │ │ │ │ └── CategoryModal.tsx │ │ │ ├── OrgActionItemCategories.spec.tsx │ │ │ └── OrgActionItemCategories.tsx │ │ ├── AgendaItemCategories │ │ │ ├── Create │ │ │ │ ├── AgendaCategoryCreateModal.spec.tsx │ │ │ │ └── AgendaCategoryCreateModal.tsx │ │ │ ├── Delete │ │ │ │ ├── AgendaCategoryDeleteModal.spec.tsx │ │ │ │ └── AgendaCategoryDeleteModal.tsx │ │ │ ├── OrganizationAgendaCategory.spec.tsx │ │ │ ├── OrganizationAgendaCategory.tsx │ │ │ ├── Preview │ │ │ │ ├── AgendaCategoryPreviewModal.spec.tsx │ │ │ │ └── AgendaCategoryPreviewModal.tsx │ │ │ └── Update │ │ │ │ ├── AgendaCategoryUpdateModal.spec.tsx │ │ │ │ └── AgendaCategoryUpdateModal.tsx │ │ └── General │ │ │ ├── DeleteOrg │ │ │ ├── DeleteOrg.spec.tsx │ │ │ └── DeleteOrg.tsx │ │ │ ├── GeneralSettings.spec.tsx │ │ │ ├── GeneralSettings.tsx │ │ │ └── OrgUpdate │ │ │ ├── OrgUpdate.spec.tsx │ │ │ └── OrgUpdate.tsx │ ├── OrganizationCardStart │ │ └── OrganizationCardStart.tsx │ ├── OrganizationDashCards │ │ ├── CardItem │ │ │ ├── CardItem.spec.tsx │ │ │ ├── CardItem.tsx │ │ │ └── Loader │ │ │ │ ├── CardItemLoading.spec.tsx │ │ │ │ └── CardItemLoading.tsx │ │ ├── DashboardCard.tsx │ │ └── Loader │ │ │ ├── DashBoardCardLoading.spec.tsx │ │ │ └── DashboardCardLoading.tsx │ ├── OrganizationScreen │ │ ├── OrganizationScreen.spec.tsx │ │ └── OrganizationScreen.tsx │ ├── Pagination │ │ ├── Navigator │ │ │ ├── Pagination.spec.tsx │ │ │ └── Pagination.tsx │ │ └── PaginationList │ │ │ ├── PaginationList.css │ │ │ └── PaginationList.tsx │ ├── ProfileCard │ │ ├── ProfileCard.spec.tsx │ │ └── ProfileCard.tsx │ ├── ProfileDropdown │ │ ├── ProfileDropdown.spec.tsx │ │ └── ProfileDropdown.tsx │ ├── RecurrenceOptions │ │ ├── Modal │ │ │ ├── CustomRecurrence.spec.tsx │ │ │ └── CustomRecurrenceModal.tsx │ │ ├── RecurrenceOptions.spec.tsx │ │ └── RecurrenceOptions.tsx │ ├── RequestsTableItem │ │ ├── RequestsTableItem.spec.tsx │ │ └── RequestsTableItem.tsx │ ├── SecuredRoute │ │ ├── SecuredRoute.tsx │ │ └── securedRoute.spec.tsx │ ├── SignOut │ │ ├── SignOut.spec.tsx │ │ └── SignOut.tsx │ ├── SuperAdminScreen │ │ ├── SuperAdminScreen.spec.tsx │ │ └── SuperAdminScreen.tsx │ ├── TableLoader │ │ ├── TableLoader.spec.tsx │ │ └── TableLoader.tsx │ ├── TagActions │ │ ├── Node │ │ │ ├── TagNode.spec.tsx │ │ │ ├── TagNode.tsx │ │ │ └── TagNodeMocks.ts │ │ ├── TagActions.spec.tsx │ │ ├── TagActions.tsx │ │ └── TagActionsMocks.ts │ ├── UpdateSession │ │ ├── UpdateSession.spec.tsx │ │ └── UpdateSession.tsx │ ├── UserListCard │ │ ├── UserListCard.spec.tsx │ │ └── UserListCard.tsx │ ├── UserPasswordUpdate │ │ ├── UserPasswordUpdate.spec.tsx │ │ └── UserPasswordUpdate.tsx │ ├── UserPortal │ │ ├── ChatRoom │ │ │ ├── ChatRoom.spec.tsx │ │ │ └── ChatRoom.tsx │ │ ├── CommentCard │ │ │ ├── CommentCard.spec.tsx │ │ │ └── CommentCard.tsx │ │ ├── ContactCard │ │ │ ├── ContactCard.spec.tsx │ │ │ └── ContactCard.tsx │ │ ├── CreateDirectChat │ │ │ ├── CreateDirectChat.spec.tsx │ │ │ ├── CreateDirectChat.tsx │ │ │ ├── CreateDirectChatMocks.ts │ │ │ └── CreateDirectChatMocks2.ts │ │ ├── CreateGroupChat │ │ │ ├── CreateGroupChat.spec.tsx │ │ │ └── CreateGroupChat.tsx │ │ ├── DonationCard │ │ │ ├── DonationCard.spec.tsx │ │ │ └── DonationCard.tsx │ │ ├── EventCard │ │ │ ├── EventCard.spec.tsx │ │ │ └── EventCard.tsx │ │ ├── OrganizationCard │ │ │ ├── OrganizationCard.spec.tsx │ │ │ └── OrganizationCard.tsx │ │ ├── OrganizationNavbar │ │ │ ├── OrganizationNavbar.spec.tsx │ │ │ └── OrganizationNavbar.tsx │ │ ├── OrganizationSidebar │ │ │ ├── OrganizationSidebar.spec.tsx │ │ │ └── OrganizationSidebar.tsx │ │ ├── PeopleCard │ │ │ ├── PeopleCard.spec.tsx │ │ │ └── PeopleCard.tsx │ │ ├── PostCard │ │ │ ├── PostCard.spec.tsx │ │ │ └── PostCard.tsx │ │ ├── PromotedPost │ │ │ ├── PromotedPost.spec.tsx │ │ │ └── PromotedPost.tsx │ │ ├── Register │ │ │ ├── Register.spec.tsx │ │ │ └── Register.tsx │ │ ├── SecuredRouteForUser │ │ │ ├── SecuredRouteForUser.spec.tsx │ │ │ └── SecuredRouteForUser.tsx │ │ ├── StartPostModal │ │ │ ├── StartPostModal.spec.tsx │ │ │ └── StartPostModal.tsx │ │ ├── UserNavbar │ │ │ ├── UserNavbar.spec.tsx │ │ │ └── UserNavbar.tsx │ │ ├── UserProfile │ │ │ ├── EventsAttendedByUser.tsx │ │ │ ├── UserAddressFields.spec.tsx │ │ │ └── UserAddressFields.tsx │ │ ├── UserSidebar │ │ │ ├── UserSidebar.spec.tsx │ │ │ └── UserSidebar.tsx │ │ └── UserSidebarOrg │ │ │ ├── UserSidebarOrg.spec.tsx │ │ │ └── UserSidebarOrg.tsx │ ├── UserProfileSettings │ │ ├── Delete │ │ │ ├── DeleteUser.spec.tsx │ │ │ └── DeleteUser.tsx │ │ ├── OtherSetting │ │ │ ├── OtherSettings.spec.tsx │ │ │ └── OtherSettings.tsx │ │ ├── UserProfile.spec.tsx │ │ └── UserProfile.tsx │ ├── UsersTableItem │ │ ├── UserTableItem.spec.tsx │ │ └── UsersTableItem.tsx │ ├── Venues │ │ ├── Modal │ │ │ ├── VenueModal.spec.tsx │ │ │ └── VenueModal.tsx │ │ ├── VenueCard.spec.tsx │ │ ├── VenueCard.tsx │ │ └── VenueCardMocks.ts │ └── test-utils │ │ ├── TestWrapper.spec.tsx │ │ └── TestWrapper.tsx ├── constants.ts ├── index.spec.tsx ├── index.tsx ├── screens │ ├── BlockUser │ │ ├── BlockUser.spec.tsx │ │ └── BlockUser.tsx │ ├── CommunityProfile │ │ ├── CommunityProfile.spec.tsx │ │ └── CommunityProfile.tsx │ ├── EventManagement │ │ ├── EventManagement.spec.tsx │ │ └── EventManagement.tsx │ ├── EventVolunteers │ │ ├── Requests │ │ │ ├── Requests.spec.tsx │ │ │ └── Requests.tsx │ │ ├── VolunteerContainer.spec.tsx │ │ ├── VolunteerContainer.tsx │ │ ├── VolunteerGroups │ │ │ ├── VolunteerGroups.spec.tsx │ │ │ ├── VolunteerGroups.tsx │ │ │ ├── deleteModal │ │ │ │ ├── VolunteerGroupDeleteModal.spec.tsx │ │ │ │ └── VolunteerGroupDeleteModal.tsx │ │ │ ├── modal │ │ │ │ ├── VolunteerGroupModal.spec.tsx │ │ │ │ ├── VolunteerGroupModal.tsx │ │ │ │ └── VolunteerGroups.mocks.ts │ │ │ └── viewModal │ │ │ │ ├── VolunteerGroupViewModal.spec.tsx │ │ │ │ └── VolunteerGroupViewModal.tsx │ │ └── Volunteers │ │ │ ├── Volunteers.spec.tsx │ │ │ ├── Volunteers.tsx │ │ │ ├── createModal │ │ │ ├── VolunteerCreateModal.spec.tsx │ │ │ └── VolunteerCreateModal.tsx │ │ │ ├── deleteModal │ │ │ ├── VolunteerDeleteModal.spec.tsx │ │ │ └── VolunteerDeleteModal.tsx │ │ │ └── viewModal │ │ │ ├── VolunteerViewModal.spec.tsx │ │ │ └── VolunteerViewModal.tsx │ ├── ForgotPassword │ │ ├── ForgotPassword.spec.tsx │ │ └── ForgotPassword.tsx │ ├── FundCampaignPledge │ │ ├── FundCampaignPledge.spec.tsx │ │ ├── FundCampaignPledge.tsx │ │ ├── PledgesMocks.ts │ │ ├── deleteModal │ │ │ ├── PledgeDeleteModal.spec.tsx │ │ │ └── PledgeDeleteModal.tsx │ │ └── modal │ │ │ ├── PledgeModal.spec.tsx │ │ │ └── PledgeModal.tsx │ ├── Leaderboard │ │ ├── Leaderboard.spec.tsx │ │ └── Leaderboard.tsx │ ├── LoginPage │ │ ├── LoginPage.spec.tsx │ │ └── LoginPage.tsx │ ├── ManageTag │ │ ├── ManageTag.spec.tsx │ │ ├── ManageTag.tsx │ │ ├── ManageTagMockComponents │ │ │ ├── MockAddPeopleToTag.tsx │ │ │ └── MockTagActions.tsx │ │ ├── editModal │ │ │ ├── EditUserTagModal.spec.tsx │ │ │ └── EditUserTagModal.tsx │ │ ├── removeModal │ │ │ └── RemoveUserTagModal.tsx │ │ └── unassignModal │ │ │ └── UnassignUserTagModal.tsx │ ├── MemberDetail │ │ ├── MemberDetail.spec.tsx │ │ ├── MemberDetail.tsx │ │ └── MemberDetailMocks.ts │ ├── OrgContribution │ │ ├── OrgContribution.spec.tsx │ │ └── OrgContribution.tsx │ ├── OrgList │ │ ├── OrgList.spec.tsx │ │ ├── OrgList.tsx │ │ ├── OrgListMocks.ts │ │ └── modal │ │ │ ├── OrganizationModal.spec.tsx │ │ │ └── OrganizationModal.tsx │ ├── OrgPost │ │ ├── OrgPost.spec.tsx │ │ ├── OrgPost.tsx │ │ ├── Posts.spec.tsx │ │ └── Posts.tsx │ ├── OrgSettings │ │ ├── OrgSettings.mocks.ts │ │ ├── OrgSettings.spec.tsx │ │ └── OrgSettings.tsx │ ├── OrganizationActionItems │ │ ├── OrganizationActionItem.mocks.ts │ │ ├── OrganizationActionItems.spec.tsx │ │ ├── OrganizationActionItems.tsx │ │ ├── itemDeleteModal │ │ │ ├── ItemDeleteModal.spec.tsx │ │ │ └── ItemDeleteModal.tsx │ │ ├── itemModal │ │ │ ├── ItemModal.spec.tsx │ │ │ └── ItemModal.tsx │ │ ├── itemUpdateModal │ │ │ ├── ItemUpdateStatusModal.spec.tsx │ │ │ └── ItemUpdateStatusModal.tsx │ │ └── itemViewModal │ │ │ ├── ItemViewModal.spec.tsx │ │ │ └── ItemViewModal.tsx │ ├── OrganizationDashboard │ │ ├── Leaderboard │ │ │ └── Leaderboard.mocks.ts │ │ ├── OrganizationDashboard.spec.tsx │ │ ├── OrganizationDashboard.tsx │ │ └── OrganizationDashboardMocks.ts │ ├── OrganizationEvents │ │ ├── OrganizationEvents.spec.tsx │ │ └── OrganizationEvents.tsx │ ├── OrganizationFundCampaign │ │ ├── OrganizationFundCampagins.tsx │ │ ├── OrganizationFundCampaign.spec.tsx │ │ ├── OrganizationFundCampaignMocks.ts │ │ └── modal │ │ │ ├── CampaignModal.spec.tsx │ │ │ └── CampaignModal.tsx │ ├── OrganizationFunds │ │ ├── OrganizationFunds.spec.tsx │ │ ├── OrganizationFunds.tsx │ │ ├── OrganizationFundsMocks.ts │ │ └── modal │ │ │ ├── FundModal.spec.tsx │ │ │ └── FundModal.tsx │ ├── OrganizationPeople │ │ ├── MockDataTypes.ts │ │ ├── OrganizationPeople.spec.tsx │ │ ├── OrganizationPeople.tsx │ │ └── addMember │ │ │ ├── AddMember.spec.tsx │ │ │ └── AddMember.tsx │ ├── OrganizationTags │ │ ├── OrganizationTags.spec.tsx │ │ ├── OrganizationTags.tsx │ │ └── OrganizationTagsMocks.ts │ ├── OrganizationVenues │ │ ├── OrganizationVenues.spec.tsx │ │ └── OrganizationVenues.tsx │ ├── PageNotFound │ │ ├── PageNotFound.spec.tsx │ │ └── PageNotFound.tsx │ ├── Requests │ │ ├── Requests.spec.tsx │ │ ├── Requests.tsx │ │ └── RequestsMocks.ts │ ├── SubTags │ │ ├── SubTags.spec.tsx │ │ └── SubTags.tsx │ ├── UserPortal │ │ ├── Campaigns │ │ │ ├── Campaigns.spec.tsx │ │ │ ├── Campaigns.tsx │ │ │ ├── CampaignsMocks.ts │ │ │ ├── PledgeModal.spec.tsx │ │ │ └── PledgeModal.tsx │ │ ├── Chat │ │ │ ├── Chat.spec.tsx │ │ │ └── Chat.tsx │ │ ├── Donate │ │ │ ├── Donate.spec.tsx │ │ │ └── Donate.tsx │ │ ├── Events │ │ │ ├── Events.spec.tsx │ │ │ └── Events.tsx │ │ ├── LeaveOrganization │ │ │ ├── LeaveOrganization.spec.tsx │ │ │ └── LeaveOrganization.tsx │ │ ├── Organizations │ │ │ ├── Organizations.spec.tsx │ │ │ └── Organizations.tsx │ │ ├── People │ │ │ ├── People.spec.tsx │ │ │ └── People.tsx │ │ ├── Pledges │ │ │ ├── Pledge.spec.tsx │ │ │ ├── Pledges.tsx │ │ │ └── PledgesMocks.ts │ │ ├── Posts │ │ │ ├── Posts.spec.tsx │ │ │ └── Posts.tsx │ │ ├── Settings │ │ │ ├── ProfileHeader │ │ │ │ ├── ProfileHeader.spec.tsx │ │ │ │ └── ProfileHeader.tsx │ │ │ ├── ProfileImageSection │ │ │ │ ├── ProfileImageSection.spec.tsx │ │ │ │ └── ProfileImageSection.tsx │ │ │ ├── Settings.spec.tsx │ │ │ ├── Settings.tsx │ │ │ ├── SettingsMocks.ts │ │ │ ├── SideToggle │ │ │ │ ├── SideToggle.spec.tsx │ │ │ │ └── SideToggle.tsx │ │ │ └── UserDetails │ │ │ │ ├── UserDetails.spec.tsx │ │ │ │ └── UserDetails.tsx │ │ ├── UserScreen │ │ │ ├── UserScreen.spec.tsx │ │ │ └── UserScreen.tsx │ │ └── Volunteer │ │ │ ├── Actions │ │ │ ├── Actions.spec.tsx │ │ │ └── Actions.tsx │ │ │ ├── Groups │ │ │ ├── GroupModal.spec.tsx │ │ │ ├── GroupModal.tsx │ │ │ ├── Groups.spec.tsx │ │ │ └── Groups.tsx │ │ │ ├── Invitations │ │ │ ├── Invitations.spec.tsx │ │ │ └── Invitations.tsx │ │ │ ├── UpcomingEvents │ │ │ ├── UpcomingEvents.spec.tsx │ │ │ └── UpcomingEvents.tsx │ │ │ ├── VolunteerManagement.spec.tsx │ │ │ └── VolunteerManagement.tsx │ └── Users │ │ ├── Organization.mocks.ts │ │ ├── User.mocks.ts │ │ ├── Users.spec.tsx │ │ ├── Users.tsx │ │ └── UsersMocks.mocks.ts ├── setup │ ├── askAndSetDockerOption │ │ ├── askAndSetDockerOption.spec.ts │ │ └── askAndSetDockerOption.ts │ ├── askAndUpdatePort │ │ ├── askAndUpdatePort.ts │ │ └── askForUpdatePort.spec.ts │ ├── askForCustomPort │ │ ├── askForCustomPort.spec.ts │ │ └── askForCustomPort.ts │ ├── askForDocker │ │ ├── askForDocker.spec.ts │ │ └── askForDocker.ts │ ├── askForTalawaApiUrl │ │ ├── askForTalawaApiUrl.spec.ts │ │ ├── askForTalawaApiUrl.ts │ │ └── setupTalawaWebSocketUrl.spec.ts │ ├── checkConnection │ │ └── checkConnection.spec.ts │ ├── checkEnvFile │ │ ├── checkEnvFile.spec.ts │ │ └── checkEnvFile.ts │ ├── setup.spec.ts │ ├── setup.ts │ └── updateEnvFile │ │ └── updateEnvFile.spec.ts ├── setupTests.ts ├── state │ ├── action-creators │ │ └── index.ts │ ├── reducers │ │ ├── index.ts │ │ ├── routesReducer.spec.ts │ │ └── routesReducer.ts │ └── store.spec.tsx ├── style │ └── app-fixed.module.css ├── subComponents │ ├── SearchBar.spec.tsx │ ├── SearchBar.tsx │ ├── SearchingButton.spec.tsx │ ├── SearchingButton.tsx │ └── SortingButton.tsx ├── types │ ├── Advertisement │ │ ├── interface.ts │ │ └── type.ts │ ├── Agenda │ │ ├── interface.ts │ │ └── type.ts │ ├── Avatar │ │ └── interface.ts │ ├── Chat │ │ ├── interface.ts │ │ └── type.ts │ ├── CheckIn │ │ ├── interface.ts │ │ └── type.ts │ ├── Comment │ │ ├── interface.ts │ │ └── type.ts │ ├── Contribution │ │ └── interface.ts │ ├── Donation │ │ ├── interface.ts │ │ └── types.ts │ ├── DropDown │ │ └── interface.ts │ ├── Event │ │ ├── interface.ts │ │ ├── type.ts │ │ └── utils.ts │ ├── Member │ │ └── interface.ts │ ├── Organization │ │ ├── interface.ts │ │ └── type.ts │ ├── Post │ │ ├── interface.ts │ │ └── type.ts │ ├── Tag │ │ ├── interface.ts │ │ └── utils.ts │ ├── User │ │ ├── interface.ts │ │ └── type.ts │ ├── actionItem.ts │ ├── address.ts │ ├── membership.ts │ ├── pagination.ts │ └── venue.ts └── utils │ ├── MinioDownload.spec.ts │ ├── MinioDownload.ts │ ├── MinioUpload.spec.tsx │ ├── MinioUpload.ts │ ├── StaticMockLink.spec.ts │ ├── dateFormatter.spec.ts │ ├── fileValidation.ts │ ├── filehash.spec.ts │ ├── filehash.ts │ ├── formEnumFields.ts │ ├── getOrganizationId.ts │ ├── interfaces.ts │ ├── languages.ts │ ├── linkValid.spec.tsx │ ├── organizationTagsUtils.ts │ ├── passwordValidator.spec.ts │ ├── passwordValidator.ts │ ├── sanitizeAvatar.spec.ts │ ├── sanitizeAvatar.ts │ ├── timezoneUtils │ └── dateTimeConfig.ts │ ├── urlToFile.spec.ts │ ├── urlToFile.ts │ ├── useLocalstorage.ts │ ├── useSession.spec.tsx │ └── useSession.tsx ├── tsconfig.docs.json ├── tsconfig.json ├── typedoc.json ├── vitest.config.ts └── vitest.setup.ts /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | Dockerfile 4 | .git 5 | .gitignore 6 | .env 7 | .env.* 8 | dist 9 | coverage 10 | .nyc_output 11 | *.md 12 | .github 13 | tests 14 | __tests__ 15 | *.test.* 16 | *.spec.* 17 | # Development files 18 | *.log 19 | *.lock 20 | .DS_Store 21 | .idea 22 | .vscode 23 | # Build artifacts 24 | build 25 | out -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E402,E722,E203,F401,W503 3 | max-line-length = 80 4 | -------------------------------------------------------------------------------- /.github/workflows/auto-label.json5: -------------------------------------------------------------------------------- 1 | { 2 | "labelsSynonyms": { 3 | "dependencies": ["dependabot", "dependency", "dependencies"], 4 | "security": ["security"], 5 | "ui/ux": ["layout", "screen", "design", "figma"] 6 | }, 7 | "defaultLabels": ["unapproved"], 8 | } -------------------------------------------------------------------------------- /.github/workflows/requirements.txt: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | # DO NOT DELETE 3 | ############################################################################# 4 | # 5 | # Required for GitHub Action workflow python checks 6 | # 7 | ############################################################################# 8 | ############################################################################# 9 | 10 | black 11 | pydocstyle 12 | flake8 13 | flake8-docstrings 14 | docstring_parser 15 | -------------------------------------------------------------------------------- /.graphqlrc.yml: -------------------------------------------------------------------------------- 1 | schema: 'schema.graphql' 2 | -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | git diff HEAD^ HEAD --exit-code -- ./package.json || npm install -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | 2 | npm run generate-docs 3 | npm run format:fix 4 | # npm run lint:fix 5 | npm run lint-staged 6 | npm run typecheck 7 | npm run update:toc 8 | 9 | git add . 10 | -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "**/*.{ts,tsx,yml}": "eslint --fix", 3 | "**/*.{ts,tsx,json,scss,css,yml}": "prettier --write", 4 | "**/*.{ts,tsx}": "npx tsx scripts/githooks/check-localstorage-usage.ts" 5 | } 6 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v22.7.0 2 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/.nojekyll -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .github 3 | # Contains the PDF file of the Tag as JSON string, thus does not need to be formatted 4 | src/components/CheckIn/tagTemplate.ts -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "endOfLine": "auto" 4 | } -------------------------------------------------------------------------------- /.pydocstyle: -------------------------------------------------------------------------------- 1 | [pydocstyle] 2 | convention=google 3 | add-ignore=D415,D205 -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- 1 | # Talawa-Admin Installation 2 | 3 | Installation documentation can be found at either: 4 | 5 | 1. Online at https://docs-admin.talawa.io/docs/installation 6 | 1. In the local repository at [INSTALLATION.md](docs/docs/docs/getting-started/installation.md) which is the source file for the web page. 7 | -------------------------------------------------------------------------------- /docker/Dockerfile.deploy: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # 3 | # DO NOT EDIT!!! 4 | # 5 | # This file is used to deploy the https://test.talawa.io site 6 | # 7 | ############################################################################### 8 | FROM node:23.7.0 AS build 9 | WORKDIR /usr/src/app 10 | COPY package*.json ./ 11 | RUN npm install 12 | COPY . . 13 | RUN npm run build 14 | ENV NODE_ENV=production 15 | EXPOSE 4321 16 | CMD ["npm", "run", "serve"] 17 | -------------------------------------------------------------------------------- /docker/Dockerfile.dev: -------------------------------------------------------------------------------- 1 | FROM node:22 AS build 2 | 3 | WORKDIR /usr/src/app 4 | 5 | COPY package*.json ./ 6 | 7 | RUN npm install 8 | 9 | COPY . . 10 | 11 | RUN npm run build 12 | 13 | EXPOSE 4321 14 | 15 | CMD ["npm", "run", "serve"] -------------------------------------------------------------------------------- /docker/Dockerfile.prod: -------------------------------------------------------------------------------- 1 | # Step 1: Build Stage 2 | FROM node:22 AS builder 3 | WORKDIR /talawa-admin 4 | 5 | COPY package*.json ./ 6 | RUN npm install 7 | 8 | COPY . . 9 | 10 | ENV NODE_ENV=production 11 | 12 | RUN npm run build 13 | 14 | #Step 2: Production 15 | FROM nginx:1.27.3-alpine AS production 16 | 17 | ENV NODE_ENV=production 18 | 19 | COPY config/docker/setup/nginx.conf /etc/nginx/conf.d/default.conf 20 | COPY --from=builder /talawa-admin/build /usr/share/nginx/html 21 | EXPOSE 80 22 | CMD ["nginx", "-g", "daemon off;"] -------------------------------------------------------------------------------- /docs/docs/auto-docs/Actions/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.tsx:76](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Volunteer/Actions/Actions.tsx#L76) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: AUTH\_TOKEN 6 | 7 | > `const` **AUTH\_TOKEN**: `""` = `''` 8 | 9 | Defined in: [src/Constant/constant.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/Constant/constant.ts#L1) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: BACKEND\_URL 6 | 7 | > `const` **BACKEND\_URL**: `string` = `process.env.REACT_APP_TALAWA_URL` 8 | 9 | Defined in: [src/Constant/constant.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/Constant/constant.ts#L2) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REACT\_APP\_BACKEND\_WEBSOCKET\_URL 6 | 7 | > `const` **REACT\_APP\_BACKEND\_WEBSOCKET\_URL**: `string` 8 | 9 | Defined in: [src/Constant/constant.ts:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/Constant/constant.ts#L6) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REACT\_APP\_CUSTOM\_PORT 6 | 7 | > `const` **REACT\_APP\_CUSTOM\_PORT**: `string` = `process.env.PORT` 8 | 9 | Defined in: [src/Constant/constant.ts:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/Constant/constant.ts#L5) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REACT\_APP\_USE\_RECAPTCHA 6 | 7 | > `const` **REACT\_APP\_USE\_RECAPTCHA**: `string` = `process.env.REACT_APP_USE_RECAPTCHA` 8 | 9 | Defined in: [src/Constant/constant.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/Constant/constant.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: RECAPTCHA\_SITE\_KEY 6 | 7 | > `const` **RECAPTCHA\_SITE\_KEY**: `string` = `process.env.REACT_APP_RECAPTCHA_SITE_KEY` 8 | 9 | Defined in: [src/Constant/constant.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/Constant/constant.ts#L3) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/Constant/fileUpload/variables/FILE_UPLOAD_ALLOWED_TYPES.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: FILE\_UPLOAD\_ALLOWED\_TYPES 6 | 7 | > `const` **FILE\_UPLOAD\_ALLOWED\_TYPES**: readonly \[`"image/jpeg"`, `"image/png"`, `"image/gif"`\] 8 | 9 | Defined in: [src/Constant/fileUpload.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/Constant/fileUpload.ts#L7) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/Constant/fileUpload/variables/FILE_UPLOAD_MAX_SIZE_MB.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: FILE\_UPLOAD\_MAX\_SIZE\_MB 6 | 7 | > `const` **FILE\_UPLOAD\_MAX\_SIZE\_MB**: `number` 8 | 9 | Defined in: [src/Constant/fileUpload.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/Constant/fileUpload.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: DELETE\_ACTION\_ITEM\_MUTATION 6 | 7 | > `const` **DELETE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:88](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/ActionItemMutations.ts#L88) 10 | 11 | GraphQL mutation to delete an action item. 12 | 13 | ## Param 14 | 15 | Id of the ActionItem to be updated. 16 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/AdvertisementMutations/variables/DELETE_ADVERTISEMENT_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: DELETE\_ADVERTISEMENT\_MUTATION 6 | 7 | > `const` **DELETE\_ADVERTISEMENT\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/AdvertisementMutations.ts:80](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/AdvertisementMutations.ts#L80) 10 | 11 | GraphQL mutation to delete an advertisement. 12 | 13 | ## Param 14 | 15 | Global identifier of the advertisement. 16 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CREATE\_AGENDA\_ITEM\_MUTATION 6 | 7 | > `const` **CREATE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/AgendaItemMutations.ts#L3) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: DELETE\_AGENDA\_ITEM\_MUTATION 6 | 7 | > `const` **DELETE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/AgendaItemMutations.ts#L12) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UPDATE\_AGENDA\_ITEM\_MUTATION 6 | 7 | > `const` **UPDATE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/AgendaItemMutations.ts#L20) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: LIKE\_COMMENT 6 | 7 | > `const` **LIKE\_COMMENT**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/CommentMutations.ts:37](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/CommentMutations.ts#L37) 10 | 11 | GraphQL mutation to like a comment. 12 | 13 | ## Param 14 | 15 | The ID of the comment to be liked. 16 | 17 | ## Returns 18 | 19 | The liked comment object. 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UNLIKE\_COMMENT 6 | 7 | > `const` **UNLIKE\_COMMENT**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/CommentMutations.ts:52](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/CommentMutations.ts#L52) 10 | 11 | GraphQL mutation to unlike a comment. 12 | 13 | ## Param 14 | 15 | The ID of the comment to be unliked. 16 | 17 | ## Returns 18 | 19 | The unliked comment object. 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CREATE\_VOLUNTEER\_MEMBERSHIP 6 | 7 | > `const` **CREATE\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:90](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/EventVolunteerMutation.ts#L90) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ADD\_USER\_TO\_GROUP\_CHAT 6 | 7 | > `const` **ADD\_USER\_TO\_GROUP\_CHAT**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:82](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/OrganizationMutations.ts#L82) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CANCEL\_MEMBERSHIP\_REQUEST 6 | 7 | > `const` **CANCEL\_MEMBERSHIP\_REQUEST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:247](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/OrganizationMutations.ts#L247) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: EDIT\_CHAT\_MESSAGE 6 | 7 | > `const` **EDIT\_CHAT\_MESSAGE**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:106](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/OrganizationMutations.ts#L106) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: JOIN\_PUBLIC\_ORGANIZATION 6 | 7 | > `const` **JOIN\_PUBLIC\_ORGANIZATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:237](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/OrganizationMutations.ts#L237) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MARK\_CHAT\_MESSAGES\_AS\_READ 6 | 7 | > `const` **MARK\_CHAT\_MESSAGES\_AS\_READ**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:90](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/OrganizationMutations.ts#L90) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MESSAGE\_SENT\_TO\_CHAT 6 | 7 | > `const` **MESSAGE\_SENT\_TO\_CHAT**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:164](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/OrganizationMutations.ts#L164) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: SEND\_MESSAGE\_TO\_CHAT 6 | 7 | > `const` **SEND\_MESSAGE\_TO\_CHAT**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:126](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/OrganizationMutations.ts#L126) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UPDATE\_CHAT 6 | 7 | > `const` **UPDATE\_CHAT**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:98](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/OrganizationMutations.ts#L98) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: DELETE\_PLEDGE 6 | 7 | > `const` **DELETE\_PLEDGE**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:73](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/PledgeMutation.ts#L73) 10 | 11 | GraphQL mutation to delete a pledge. 12 | 13 | ## Param 14 | 15 | The ID of the pledge being deleted. 16 | 17 | ## Returns 18 | 19 | Whether the pledge was successfully deleted. 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ADD\_PEOPLE\_TO\_TAG 6 | 7 | > `const` **ADD\_PEOPLE\_TO\_TAG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/TagMutations.ts:83](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/TagMutations.ts#L83) 10 | 11 | GraphQL mutation to add people to tag. 12 | 13 | ## Param 14 | 15 | Id of the tag to be assigned. 16 | 17 | ## Param 18 | 19 | Ids of the users to assign to. 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ASSIGN\_TO\_TAGS 6 | 7 | > `const` **ASSIGN\_TO\_TAGS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/TagMutations.ts:98](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/TagMutations.ts#L98) 10 | 11 | GraphQL mutation to assign people to multiple tags. 12 | 13 | ## Param 14 | 15 | Id of the current tag. 16 | 17 | ## Param 18 | 19 | Ids of the selected tags to be assined. 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REMOVE\_FROM\_TAGS 6 | 7 | > `const` **REMOVE\_FROM\_TAGS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/TagMutations.ts:115](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/TagMutations.ts#L115) 10 | 11 | GraphQL mutation to remove people from multiple tags. 12 | 13 | ## Param 14 | 15 | Id of the current tag. 16 | 17 | ## Param 18 | 19 | Ids of the selected tags to be removed from. 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REMOVE\_USER\_TAG 6 | 7 | > `const` **REMOVE\_USER\_TAG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/TagMutations.ts:68](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/TagMutations.ts#L68) 10 | 11 | GraphQL mutation to remove a user tag. 12 | 13 | ## Param 14 | 15 | Id of the tag to be removed . 16 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UNASSIGN\_USER\_TAG 6 | 7 | > `const` **UNASSIGN\_USER\_TAG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/TagMutations.ts:39](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/TagMutations.ts#L39) 10 | 11 | GraphQL mutation to unsssign a user tag from a user. 12 | 13 | ## Param 14 | 15 | Id the tag. 16 | 17 | ## Param 18 | 19 | Id of the user to be unassigned. 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UPDATE\_USER\_TAG 6 | 7 | > `const` **UPDATE\_USER\_TAG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/TagMutations.ts:54](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/TagMutations.ts#L54) 10 | 11 | GraphQL mutation to update a user tag. 12 | 13 | ## Param 14 | 15 | Id the tag. 16 | 17 | ## Param 18 | 19 | Updated name of the tag. 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: DELETE\_VENUE\_MUTATION 6 | 7 | > `const` **DELETE\_VENUE\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/VenueMutations.ts:73](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/VenueMutations.ts#L73) 10 | 11 | GraphQL mutation to delete a venue. 12 | 13 | ## Param 14 | 15 | The id of the Venue to be deleted. 16 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION 6 | 7 | > `const` **ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L33) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ADDRESS\_DETAILS\_FRAGMENT 6 | 7 | > `const` **ADDRESS\_DETAILS\_FRAGMENT**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:66](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L66) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ADD\_ADMIN\_MUTATION 6 | 7 | > `const` **ADD\_ADMIN\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:422](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L422) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ADD\_MEMBER\_MUTATION 6 | 7 | > `const` **ADD\_MEMBER\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:432](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L432) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: BLOCK\_USER\_MUTATION\_PG 6 | 7 | > `const` **BLOCK\_USER\_MUTATION\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L6) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CREATE\_EVENT\_MUTATION 6 | 7 | > `const` **CREATE\_EVENT\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:325](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L325) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_MEMBER_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CREATE\_MEMBER\_PG 6 | 7 | > `const` **CREATE\_MEMBER\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:181](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L181) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MEMBERSHIP_MUTATION_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CREATE\_ORGANIZATION\_MEMBERSHIP\_MUTATION\_PG 6 | 7 | > `const` **CREATE\_ORGANIZATION\_MEMBERSHIP\_MUTATION\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:294](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L294) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CREATE\_ORGANIZATION\_MUTATION 6 | 7 | > `const` **CREATE\_ORGANIZATION\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:238](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L238) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CREATE\_ORGANIZATION\_MUTATION\_PG 6 | 7 | > `const` **CREATE\_ORGANIZATION\_MUTATION\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:262](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L262) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CREATE\_POST\_MUTATION 6 | 7 | > `const` **CREATE\_POST\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:442](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L442) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: DELETE\_EVENT\_MUTATION 6 | 7 | > `const` **DELETE\_EVENT\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:381](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L381) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: DELETE\_ORGANIZATION\_MUTATION 6 | 7 | > `const` **DELETE\_ORGANIZATION\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:314](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L314) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: DELETE\_POST\_MUTATION 6 | 7 | > `const` **DELETE\_POST\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:457](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L457) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: DONATE\_TO\_ORGANIZATION 6 | 7 | > `const` **DONATE\_TO\_ORGANIZATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:630](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L630) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: FORGOT\_PASSWORD\_MUTATION 6 | 7 | > `const` **FORGOT\_PASSWORD\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:473](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L473) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GENERATE\_OTP\_MUTATION 6 | 7 | > `const` **GENERATE\_OTP\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:465](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L465) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GET_FILE_PRESIGNEDURL.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_FILE\_PRESIGNEDURL 6 | 7 | > `const` **GET\_FILE\_PRESIGNEDURL**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:727](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L727) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: LIKE\_POST 6 | 7 | > `const` **LIKE\_POST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:556](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L556) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/PRESIGNED_URL.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: PRESIGNED\_URL 6 | 7 | > `const` **PRESIGNED\_URL**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:716](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L716) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: RECAPTCHA\_MUTATION 6 | 7 | > `const` **RECAPTCHA\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:230](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L230) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REFRESH\_TOKEN\_MUTATION 6 | 7 | > `const` **REFRESH\_TOKEN\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:211](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L211) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REGISTER\_EVENT 6 | 7 | > `const` **REGISTER\_EVENT**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:572](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L572) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REJECT\_ORGANIZATION\_REQUEST\_MUTATION 6 | 7 | > `const` **REJECT\_ORGANIZATION\_REQUEST\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L20) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REMOVE\_ADMIN\_MUTATION 6 | 7 | > `const` **REMOVE\_ADMIN\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:393](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L393) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REMOVE\_MEMBER\_MUTATION 6 | 7 | > `const` **REMOVE\_MEMBER\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:402](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L402) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REMOVE\_MEMBER\_MUTATION\_PG 6 | 7 | > `const` **REMOVE\_MEMBER\_MUTATION\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:411](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L411) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: RESET\_COMMUNITY 6 | 7 | > `const` **RESET\_COMMUNITY**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:624](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L624) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: REVOKE\_REFRESH\_TOKEN 6 | 7 | > `const` **REVOKE\_REFRESH\_TOKEN**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:222](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L222) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: SIGNUP\_MUTATION 6 | 7 | > `const` **SIGNUP\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:169](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L169) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UNBLOCK\_USER\_MUTATION\_PG 6 | 7 | > `const` **UNBLOCK\_USER\_MUTATION\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L12) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UNLIKE\_POST 6 | 7 | > `const` **UNLIKE\_POST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:564](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L564) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UPDATE\_COMMUNITY\_PG 6 | 7 | > `const` **UPDATE\_COMMUNITY\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:580](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L580) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_CURRENT_USER_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UPDATE\_CURRENT\_USER\_MUTATION 6 | 7 | > `const` **UPDATE\_CURRENT\_USER\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:80](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L80) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UPDATE\_EVENT\_MUTATION 6 | 7 | > `const` **UPDATE\_EVENT\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:502](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L502) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UPDATE\_ORGANIZATION\_MUTATION 6 | 7 | > `const` **UPDATE\_ORGANIZATION\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L46) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UPDATE\_POST\_MUTATION 6 | 7 | > `const` **UPDATE\_POST\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:489](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L489) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UPDATE\_SESSION\_TIMEOUT\_PG 6 | 7 | > `const` **UPDATE\_SESSION\_TIMEOUT\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:614](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L614) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UPDATE\_USER\_MUTATION 6 | 7 | > `const` **UPDATE\_USER\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:114](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L114) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UPDATE\_USER\_PASSWORD\_MUTATION 6 | 7 | > `const` **UPDATE\_USER\_PASSWORD\_MUTATION**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Mutations/mutations.ts:147](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L147) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ACTION\_ITEMS\_BY\_USER 6 | 7 | > `const` **ACTION\_ITEMS\_BY\_USER**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/ActionItemQueries.ts:78](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/ActionItemQueries.ts#L78) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/AdvertisementQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ORGANIZATION\_ADVERTISEMENT\_LIST 6 | 7 | > `const` **ORGANIZATION\_ADVERTISEMENT\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/AdvertisementQueries.ts:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/AdvertisementQueries.ts#L15) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: AgendaItemByEvent 6 | 7 | > `const` **AgendaItemByEvent**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/AgendaItemQueries.ts:39](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/AgendaItemQueries.ts#L39) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: AgendaItemByOrganization 6 | 7 | > `const` **AgendaItemByOrganization**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/AgendaItemQueries.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/AgendaItemQueries.ts#L3) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: EVENT\_VOLUNTEER\_GROUP\_LIST 6 | 7 | > `const` **EVENT\_VOLUNTEER\_GROUP\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/EventVolunteerQueries.ts#L41) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_VOLUNTEER\_MEMBERSHIP 6 | 7 | > `const` **USER\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:89](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/EventVolunteerQueries.ts#L89) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: VOLUNTEER\_RANKING 6 | 7 | > `const` **VOLUNTEER\_RANKING**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:120](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/EventVolunteerQueries.ts#L120) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/FILTERED_ORGANIZATION_POSTS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: FILTERED\_ORGANIZATION\_POSTS 6 | 7 | > `const` **FILTERED\_ORGANIZATION\_POSTS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:66](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L66) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/GET_POSTS_BY_ORG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_POSTS\_BY\_ORG 6 | 7 | > `const` **GET\_POSTS\_BY\_ORG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:49](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L49) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ORGANIZATION\_USER\_TAGS\_LIST\_PG 6 | 7 | > `const` **ORGANIZATION\_USER\_TAGS\_LIST\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:209](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L209) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_JOINED\_ORGANIZATIONS\_PG 6 | 7 | > `const` **USER\_JOINED\_ORGANIZATIONS\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:115](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L115) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CHATS\_LIST 6 | 7 | > `const` **CHATS\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/PlugInQueries.ts:286](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/PlugInQueries.ts#L286) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GROUP\_CHAT\_LIST 6 | 7 | > `const` **GROUP\_CHAT\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/PlugInQueries.ts:192](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/PlugInQueries.ts#L192) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UNREAD\_CHAT\_LIST 6 | 7 | > `const` **UNREAD\_CHAT\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/PlugInQueries.ts:239](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/PlugInQueries.ts#L239) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_EVENTS\_VOLUNTEER 6 | 7 | > `const` **USER\_EVENTS\_VOLUNTEER**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/PlugInQueries.ts:84](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/PlugInQueries.ts#L84) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ADMIN\_LIST 6 | 7 | > `const` **ADMIN\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:883](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L883) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ALL_ORGANIZATIONS_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ALL\_ORGANIZATIONS\_PG 6 | 7 | > `const` **ALL\_ORGANIZATIONS\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:90](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L90) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: BLOCK\_PAGE\_MEMBER\_LIST 6 | 7 | > `const` **BLOCK\_PAGE\_MEMBER\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:617](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L617) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CURRENT_USER.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CURRENT\_USER 6 | 7 | > `const` **CURRENT\_USER**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L7) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: EVENT\_ATTENDEES 6 | 7 | > `const` **EVENT\_ATTENDEES**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:329](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L329) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: EVENT\_CHECKINS 6 | 7 | > `const` **EVENT\_CHECKINS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:357](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L357) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: EVENT\_DETAILS 6 | 7 | > `const` **EVENT\_DETAILS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:284](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L284) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: EVENT\_FEEDBACKS 6 | 7 | > `const` **EVENT\_FEEDBACKS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:377](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L377) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: EVENT\_REGISTRANTS 6 | 7 | > `const` **EVENT\_REGISTRANTS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:347](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L347) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_COMMUNITY\_DATA 6 | 7 | > `const` **GET\_COMMUNITY\_DATA**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:1040](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L1040) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_COMMUNITY\_DATA\_PG 6 | 7 | > `const` **GET\_COMMUNITY\_DATA\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:1016](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L1016) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA\_PG 6 | 7 | > `const` **GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:1077](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L1077) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_ORGANIZATION_BLOCKED_USERS_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_ORGANIZATION\_BLOCKED\_USERS\_PG 6 | 7 | > `const` **GET\_ORGANIZATION\_BLOCKED\_USERS\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:451](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L451) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_ORGANIZATION_DATA_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_ORGANIZATION\_DATA\_PG 6 | 7 | > `const` **GET\_ORGANIZATION\_DATA\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:539](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L539) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_ORGANIZATION_EVENTS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_ORGANIZATION\_EVENTS 6 | 7 | > `const` **GET\_ORGANIZATION\_EVENTS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:1114](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L1114) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_ORGANIZATION_EVENTS_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_ORGANIZATION\_EVENTS\_PG 6 | 7 | > `const` **GET\_ORGANIZATION\_EVENTS\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:492](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L492) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_ORGANIZATION_MEMBERS_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_ORGANIZATION\_MEMBERS\_PG 6 | 7 | > `const` **GET\_ORGANIZATION\_MEMBERS\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:429](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L429) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_ORGANIZATION_POSTS_COUNT_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_ORGANIZATION\_POSTS\_COUNT\_PG 6 | 7 | > `const` **GET\_ORGANIZATION\_POSTS\_COUNT\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:393](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L393) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_ORGANIZATION_POSTS_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_ORGANIZATION\_POSTS\_PG 6 | 7 | > `const` **GET\_ORGANIZATION\_POSTS\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:519](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L519) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_POSTS_BY_ORG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_POSTS\_BY\_ORG 6 | 7 | > `const` **GET\_POSTS\_BY\_ORG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:402](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L402) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_USER_BY_ID.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GET\_USER\_BY\_ID 6 | 7 | > `const` **GET\_USER\_BY\_ID**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:420](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L420) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/IS_USER_BLOCKED.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: IS\_USER\_BLOCKED 6 | 7 | > `const` **IS\_USER\_BLOCKED**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:473](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L473) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MEMBERSHIP\_REQUEST 6 | 7 | > `const` **MEMBERSHIP\_REQUEST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:900](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L900) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MEMBERS\_LIST 6 | 7 | > `const` **MEMBERS\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:598](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L598) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MEMBERS\_LIST\_PG 6 | 7 | > `const` **MEMBERS\_LIST\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:579](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L579) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ORGANIZATIONS\_LIST 6 | 7 | > `const` **ORGANIZATIONS\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:550](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L550) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST 6 | 7 | > `const` **ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:644](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L644) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ORGANIZATION\_DONATION\_CONNECTION\_LIST 6 | 7 | > `const` **ORGANIZATION\_DONATION\_CONNECTION\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:862](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L862) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ORGANIZATION\_EVENT\_CONNECTION\_LIST 6 | 7 | > `const` **ORGANIZATION\_EVENT\_CONNECTION\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:806](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L806) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ORGANIZATION\_EVENT\_LIST 6 | 7 | > `const` **ORGANIZATION\_EVENT\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:786](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L786) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: ORGANIZATION\_LIST 6 | 7 | > `const` **ORGANIZATION\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:40](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L40) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: RECURRING\_EVENTS 6 | 7 | > `const` **RECURRING\_EVENTS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:315](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L315) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/SIGNIN_QUERY.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: SIGNIN\_QUERY 6 | 7 | > `const` **SIGNIN\_QUERY**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:1061](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L1061) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USERS\_CONNECTION\_LIST 6 | 7 | > `const` **USERS\_CONNECTION\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:927](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L927) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_DETAILS 6 | 7 | > `const` **USER\_DETAILS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:698](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L698) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_JOINED_ORGANIZATIONS_PG.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_JOINED\_ORGANIZATIONS\_PG 6 | 7 | > `const` **USER\_JOINED\_ORGANIZATIONS\_PG**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:62](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L62) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_LIST 6 | 7 | > `const` **USER\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:110](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L110) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_LIST\_FOR\_TABLE 6 | 7 | > `const` **USER\_LIST\_FOR\_TABLE**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:206](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L206) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_LIST\_REQUEST 6 | 7 | > `const` **USER\_LIST\_REQUEST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:241](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L241) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_ORGANIZATION\_LIST 6 | 7 | > `const` **USER\_ORGANIZATION\_LIST**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/Queries.ts:684](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L684) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: FUND\_CAMPAIGN\_PLEDGE 6 | 7 | > `const` **FUND\_CAMPAIGN\_PLEDGE**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/fundQueries.ts:70](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/fundQueries.ts#L70) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_FUND\_CAMPAIGNS 6 | 7 | > `const` **USER\_FUND\_CAMPAIGNS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/fundQueries.ts:104](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/fundQueries.ts#L104) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_PLEDGES 6 | 7 | > `const` **USER\_PLEDGES**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/fundQueries.ts:120](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/fundQueries.ts#L120) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: USER\_TAG\_SUB\_TAGS 6 | 7 | > `const` **USER\_TAG\_SUB\_TAGS**: `DocumentNode` 8 | 9 | Defined in: [src/GraphQl/Queries/userTagQueries.ts:60](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/userTagQueries.ts#L60) 10 | 11 | GraphQL query to retrieve the sub tags of a certain tag. 12 | 13 | ## Param 14 | 15 | The ID of the parent tag. 16 | 17 | ## Returns 18 | 19 | The list of sub tags. 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/LeaveOrganization/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L71) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/LeaveOrganization/variables/userEmail.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: userEmail 6 | 7 | > `const` **userEmail**: `unknown` 8 | 9 | Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:52](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L52) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/LeaveOrganization/variables/userId.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: userId 6 | 7 | > `const` **userId**: `unknown` 8 | 9 | Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:60](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L60) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/LoginPage/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/LoginPage/LoginPage.tsx:90](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/LoginPage/LoginPage.tsx#L90) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/LoginPortalToggle/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `JSX.Element` 8 | 9 | Defined in: [src/components/LoginPortalToggle/LoginPortalToggle.tsx:37](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L37) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | `InterfaceLoginPortalToggleProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/OrgContriCards/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/OrgContriCards/OrgContriCards.tsx:40](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/OrgContriCards/OrgContriCards.tsx#L40) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | [`InterfaceOrgContriCardsProps`](../../types/Contribution/interface/interfaces/InterfaceOrgContriCardsProps.md) 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/OrgContribution/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/OrgContribution/OrgContribution.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrgContribution/OrgContribution.tsx#L46) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/Register/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/UserPortal/Register/Register.tsx:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/Register/Register.tsx#L45) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `InterfaceRegisterProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/Requests/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/Requests/Requests.tsx:85](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/Requests/Requests.tsx#L85) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/Volunteers/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.tsx:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/EventVolunteers/Volunteers/Volunteers.tsx#L102) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/components/Advertisements/Advertisements.tsx:51](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/Advertisements.tsx#L51) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/functions/wait.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: wait() 6 | 7 | > **wait**(`ms`): `Promise`\<`void`\> 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:153](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L153) 10 | 11 | ## Parameters 12 | 13 | ### ms 14 | 15 | `number` = `100` 16 | 17 | ## Returns 18 | 19 | `Promise`\<`void`\> 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/client.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: client 6 | 7 | > `const` **client**: `ApolloClient`\<`NormalizedCacheObject`\> 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:148](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L148) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/createAdvertisementError.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: createAdvertisementError 6 | 7 | > `const` **createAdvertisementError**: `BaseMutationMock`\<\{ `endAt`: `string`; `organizationId`: `string`; `startAt`: `string`; `type`: `string`; \}\>[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:535](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L535) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/createAdvertisementWithoutName.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: createAdvertisementWithoutName 6 | 7 | > `const` **createAdvertisementWithoutName**: `BaseMutationMock`\<\{ `endAt`: `string`; `organizationId`: `string`; `startAt`: `string`; `type`: `string`; \}\>[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:509](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L509) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/deleteAdvertisementMocks.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: deleteAdvertisementMocks 6 | 7 | > `const` **deleteAdvertisementMocks**: (`AdvertisementListMock` \| `BaseMutationMock`\<\{ `id`: `string`; \}\>)[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:327](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L327) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/emptyMocks.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: emptyMocks 6 | 7 | > `const` **emptyMocks**: `AdvertisementListMock`[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:272](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L272) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/fetchErrorMocks.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: fetchErrorMocks 6 | 7 | > `const` **fetchErrorMocks**: `BaseMutationMock`\<\{ `after`: `any`; `first`: `number`; `id`: `string`; `where`: \{ `isCompleted`: `boolean`; \}; \}\>[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:586](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L586) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/filterActiveAdvertisementData.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: filterActiveAdvertisementData 6 | 7 | > `const` **filterActiveAdvertisementData**: `AdvertisementListMock`[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:455](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L455) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/filterCompletedAdvertisementData.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: filterCompletedAdvertisementData 6 | 7 | > `const` **filterCompletedAdvertisementData**: `AdvertisementListMock`[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:469](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L469) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/getActiveAdvertisementMocks.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: getActiveAdvertisementMocks 6 | 7 | > `const` **getActiveAdvertisementMocks**: `AdvertisementListMock`[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:306](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L306) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/getCompletedAdvertisementMocks.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: getCompletedAdvertisementMocks 6 | 7 | > `const` **getCompletedAdvertisementMocks**: `AdvertisementListMock`[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:301](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L301) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/httpLink.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: httpLink 6 | 7 | > `const` **httpLink**: `HttpLink` 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:143](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L143) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/infiniteScrollMocks.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: infiniteScrollMocks 6 | 7 | > `const` **infiniteScrollMocks**: `AdvertisementListMock`[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:341](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L341) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/initialActiveData.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: initialActiveData 6 | 7 | > `const` **initialActiveData**: `AdvertisementListMock`[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:422](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L422) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/initialArchivedData.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: initialArchivedData 6 | 7 | > `const` **initialArchivedData**: `AdvertisementListMock`[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:389](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L389) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/mockFileForAdvertisementScreen.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mockFileForAdvertisementScreen 6 | 7 | > `const` **mockFileForAdvertisementScreen**: `File` 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:110](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L110) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/AdvertisementsMocks/variables/updateAdMocks.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: updateAdMocks 6 | 7 | > `const` **updateAdMocks**: (`AdvertisementListMock` \| `BaseMutationMock`\<\{ `description`: `string`; `endAt`: `string`; `id`: `string`; `startAt`: `string`; \}\>)[] 8 | 9 | Defined in: [src/components/Advertisements/AdvertisementsMocks.ts:549](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/AdvertisementsMocks.ts#L549) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks/variables/createAdFailMock.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: createAdFailMock 6 | 7 | > `const` **createAdFailMock**: `MockedResponse` 8 | 9 | Defined in: [src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks.ts:134](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks.ts#L134) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks/variables/createAdvertisement.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: createAdvertisement 6 | 7 | > `const` **createAdvertisement**: `MockedResponse`[] 8 | 9 | Defined in: [src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks.ts:164](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks.ts#L164) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks/variables/mockBigFile.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mockBigFile 6 | 7 | > `const` **mockBigFile**: `File` 8 | 9 | Defined in: [src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks.ts#L19) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks/variables/mockFile.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: mockFile 6 | 7 | > `const` **mockFile**: `File` 8 | 9 | Defined in: [src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks.ts:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks.ts#L15) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks/variables/updateAdFailMock.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: updateAdFailMock 6 | 7 | > `const` **updateAdFailMock**: `MockedResponse` 8 | 9 | Defined in: [src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks.ts:149](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegisterMocks.ts#L149) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `Element` 8 | 9 | Defined in: [src/components/Avatar/Avatar.tsx:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Avatar/Avatar.tsx#L41) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | [`InterfaceAvatarProps`](../../../../types/Avatar/interface/interfaces/InterfaceAvatarProps.md) 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: CheckInWrapper() 6 | 7 | > **CheckInWrapper**(`__namedParameters`): `Element` 8 | 9 | Defined in: [src/components/CheckIn/CheckInWrapper.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/CheckIn/CheckInWrapper.tsx#L34) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | `PropType` 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: tagTemplate 6 | 7 | > `const` **tagTemplate**: `Template` 8 | 9 | Defined in: [src/components/CheckIn/tagTemplate.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/CheckIn/tagTemplate.ts#L4) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/components/EventDashboardScreen/EventDashboardScreen.tsx:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/EventDashboardScreen/EventDashboardScreen.tsx#L48) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/EventListCard/EventListCard.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/EventListCard/EventListCard.tsx#L44) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `InterfaceEventListCard` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: props 6 | 7 | > `const` **props**: `InterfaceEventListCard`[] 8 | 9 | Defined in: [src/components/EventListCard/EventListCardProps.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/EventListCard/EventListCardProps.ts#L8) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `Element` 8 | 9 | Defined in: [src/components/EventManagement/Dashboard/EventDashboard.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/EventManagement/Dashboard/EventDashboard.tsx#L47) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | #### eventId 16 | 17 | `string` 18 | 19 | ## Returns 20 | 21 | `Element` 22 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MOCKS\_ERROR\_QUERY 6 | 7 | > `const` **MOCKS\_ERROR\_QUERY**: `any`[] = `[]` 8 | 9 | Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:133](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L133) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance/EventAttendance/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/components/EventManagement/EventAttendance/Attendance/EventAttendance.tsx:57](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/EventManagement/EventAttendance/Attendance/EventAttendance.tsx#L57) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/components/EventManagement/EventRegistrant/EventRegistrants.tsx:57](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/EventManagement/EventRegistrant/EventRegistrants.tsx#L57) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: EventStatsWrapper() 6 | 7 | > **EventStatsWrapper**(`__namedParameters`): `Element` 8 | 9 | Defined in: [src/components/EventStats/EventStatsWrapper.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/EventStats/EventStatsWrapper.tsx#L38) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | #### _id 16 | 17 | `string` 18 | 19 | ## Returns 20 | 21 | `Element` 22 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/EventStats/Statistics/EventStats/functions/EventStats.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: EventStats() 6 | 7 | > **EventStats**(`__namedParameters`): `Element` 8 | 9 | Defined in: [src/components/EventStats/Statistics/EventStats.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/EventStats/Statistics/EventStats.tsx#L50) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | `ModalPropType` 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetailsMocks/variables/filledMockChat.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: filledMockChat 6 | 7 | > `const` **filledMockChat**: [`GroupChat`](../../../../types/Chat/type/type-aliases/GroupChat.md) 8 | 9 | Defined in: [src/components/GroupChatDetails/GroupChatDetailsMocks.tsx:94](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/GroupChatDetails/GroupChatDetailsMocks.tsx#L94) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetailsMocks/variables/incompleteMockChat.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: incompleteMockChat 6 | 7 | > `const` **incompleteMockChat**: [`GroupChat`](../../../../types/Chat/type/type-aliases/GroupChat.md) 8 | 9 | Defined in: [src/components/GroupChatDetails/GroupChatDetailsMocks.tsx:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/GroupChatDetails/GroupChatDetailsMocks.tsx#L101) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `Element` 8 | 9 | Defined in: [src/components/HolidayCards/HolidayCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/HolidayCards/HolidayCard.tsx#L27) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `InterfaceHolidayList` 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `Element` 8 | 9 | Defined in: [src/components/IconComponent/IconComponent.tsx:65](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/IconComponent/IconComponent.tsx#L65) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | [`InterfaceIconComponent`](../interfaces/InterfaceIconComponent.md) 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx#L29) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `Element` 8 | 9 | Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:51](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/LeftDrawer/LeftDrawer.tsx#L51) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | [`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `Element` 8 | 9 | Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L59) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | [`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Loader/Loader/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `Element` 8 | 9 | Defined in: [src/components/Loader/Loader.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Loader/Loader.tsx#L43) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `InterfaceLoaderProps` 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/MemberActivity/Card/EventsAttendedCardItem/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `Element` 8 | 9 | Defined in: [src/components/MemberActivity/Card/EventsAttendedCardItem.tsx:52](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/MemberActivity/Card/EventsAttendedCardItem.tsx#L52) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | [`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/MemberActivity/EventsAttendedByMember/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `JSX.Element` 8 | 9 | Defined in: [src/components/MemberActivity/EventsAttendedByMember.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/MemberActivity/EventsAttendedByMember.tsx#L35) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | `InterfaceEventsAttendedByMember` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/NotFound/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/NotFound/NotFound.tsx:40](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/NotFound/NotFound.tsx#L40) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `InterfaceNotFoundProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/components/OrgDelete/OrgDelete.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/OrgDelete/OrgDelete.tsx#L35) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `JSX.Element` 8 | 9 | Defined in: [src/components/OrgListCard/OrgListCard.tsx:54](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/OrgListCard/OrgListCard.tsx#L54) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | [`InterfaceOrgListCardPropsPG`](../interfaces/InterfaceOrgListCardPropsPG.md) 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `JSX.Element` 8 | 9 | Defined in: [src/components/OrgPostCard/OrgPostCard.tsx:91](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/OrgPostCard/OrgPostCard.tsx#L91) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | `InterfaceOrgPostCardProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/OrganizationDashCards/CardItem/CardItem/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `Element` 8 | 9 | Defined in: [src/components/OrganizationDashCards/CardItem/CardItem.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/OrganizationDashCards/CardItem/CardItem.tsx#L50) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | [`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/OrganizationDashCards/CardItem/Loader/CardItemLoading/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/components/OrganizationDashCards/CardItem/Loader/CardItemLoading.tsx:37](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/OrganizationDashCards/CardItem/Loader/CardItemLoading.tsx#L37) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/OrganizationDashCards/Loader/DashboardCardLoading/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/components/OrganizationDashCards/Loader/DashboardCardLoading.tsx:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/OrganizationDashCards/Loader/DashboardCardLoading.tsx#L41) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/components/OrganizationScreen/OrganizationScreen.tsx:74](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/OrganizationScreen/OrganizationScreen.tsx#L74) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Pagination/Navigator/Pagination/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/Pagination/Navigator/Pagination.tsx:52](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Pagination/Navigator/Pagination.tsx#L52) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `InterfaceTablePaginationActionsProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Pagination/PaginationList/PaginationList/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `Element` 8 | 9 | Defined in: [src/components/Pagination/PaginationList/PaginationList.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Pagination/PaginationList/PaginationList.tsx#L50) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | `InterfacePropsInterface` 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/ProfileCard/ProfileCard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/components/ProfileCard/ProfileCard.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/ProfileCard/ProfileCard.tsx#L50) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/components/ProfileDropdown/ProfileDropdown.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/ProfileDropdown/ProfileDropdown.tsx#L47) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `Element` 8 | 9 | Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:51](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/RequestsTableItem/RequestsTableItem.tsx#L51) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `Props` 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/components/SecuredRoute/SecuredRoute.tsx:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/SecuredRoute/SecuredRoute.tsx#L41) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/SignOut/SignOut/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/components/SignOut/SignOut.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/SignOut/SignOut.tsx#L43) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/components/SuperAdminScreen/SuperAdminScreen.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L43) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `Element` 8 | 9 | Defined in: [src/components/TableLoader/TableLoader.tsx:42](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/TableLoader/TableLoader.tsx#L42) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | [`InterfaceTableLoader`](../interfaces/InterfaceTableLoader.md) 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserListCard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/UserListCard/UserListCard.tsx:55](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserListCard/UserListCard.tsx#L55) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `InterfaceUserListCardProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/UserPortal/ChatRoom/ChatRoom.tsx:151](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L151) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `IChatRoomProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/UserPortal/CommentCard/CommentCard.tsx:66](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/CommentCard/CommentCard.tsx#L66) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `InterfaceCommentCardProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChatMocks/variables/CHAT_BY_ID_QUERY_MOCK.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CHAT\_BY\_ID\_QUERY\_MOCK 6 | 7 | > `const` **CHAT\_BY\_ID\_QUERY\_MOCK**: `InterfaceGQLMock`[] 8 | 9 | Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks.ts:292](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks.ts#L292) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChatMocks/variables/GROUP_CHAT_BY_USER_ID_QUERY_MOCK.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GROUP\_CHAT\_BY\_USER\_ID\_QUERY\_MOCK 6 | 7 | > `const` **GROUP\_CHAT\_BY\_USER\_ID\_QUERY\_MOCK**: `InterfaceGQLMock`[] 8 | 9 | Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks.ts:413](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks.ts#L413) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChatMocks/variables/MESSAGE_SENT_TO_CHAT_MOCK.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MESSAGE\_SENT\_TO\_CHAT\_MOCK 6 | 7 | > `const` **MESSAGE\_SENT\_TO\_CHAT\_MOCK**: `InterfaceGQLMock`[] 8 | 9 | Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks.ts:274](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks.ts#L274) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChatMocks/variables/UNREAD_CHAT_LIST_QUERY_MOCK.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UNREAD\_CHAT\_LIST\_QUERY\_MOCK 6 | 7 | > `const` **UNREAD\_CHAT\_LIST\_QUERY\_MOCK**: `InterfaceGQLMock`[] 8 | 9 | Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks.ts:312](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks.ts#L312) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChatMocks/variables/UserConnectionListMock.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: UserConnectionListMock 6 | 7 | > `const` **UserConnectionListMock**: `InterfaceGQLMock`[] 8 | 9 | Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks.ts:194](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks.ts#L194) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2/variables/CHATS_LIST_MOCK.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CHATS\_LIST\_MOCK 6 | 7 | > `const` **CHATS\_LIST\_MOCK**: `InterfaceGQLMock`[] 8 | 9 | Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2.ts:156](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2.ts#L156) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2/variables/CREATE_CHAT_MUTATION_MOCK.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: CREATE\_CHAT\_MUTATION\_MOCK 6 | 7 | > `const` **CREATE\_CHAT\_MUTATION\_MOCK**: `InterfaceGQLMock`[] 8 | 9 | Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2.ts:324](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2.ts#L324) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2/variables/GROUP_CHAT_BY_ID_QUERY_MOCK.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: GROUP\_CHAT\_BY\_ID\_QUERY\_MOCK 6 | 7 | > `const` **GROUP\_CHAT\_BY\_ID\_QUERY\_MOCK**: `InterfaceGQLMock`[] 8 | 9 | Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2.ts:314](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2.ts#L314) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2/variables/MARK_CHAT_MESSAGES_AS_READ_MOCK.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MARK\_CHAT\_MESSAGES\_AS\_READ\_MOCK 6 | 7 | > `const` **MARK\_CHAT\_MESSAGES\_AS\_READ\_MOCK**: `InterfaceGQLMock`[] 8 | 9 | Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2.ts:399](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/CreateDirectChat/CreateDirectChatMocks2.ts#L399) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/CreateDirectChat/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `JSX.Element` 8 | 9 | Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx:147](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx#L147) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | `InterfaceCreateDirectChatProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/UserPortal/EventCard/EventCard.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/EventCard/EventCard.tsx#L59) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | [`InterfaceEvent`](../../../../../types/Event/interface/interfaces/InterfaceEvent.md) 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:56](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L56) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `InterfaceNavbarProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:51](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L51) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/UserPortal/PeopleCard/PeopleCard.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L44) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `InterfaceOrganizationCardProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/UserPortal/PostCard/PostCard.tsx:77](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/PostCard/PostCard.tsx#L77) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | [`InterfacePostCard`](../../../../../utils/interfaces/interfaces/InterfacePostCard.md) 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `JSX.Element` 8 | 9 | Defined in: [src/components/UserPortal/PromotedPost/PromotedPost.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L44) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `InterfacePostCardProps` 16 | 17 | ## Returns 18 | 19 | `JSX.Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L36) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `Element` 8 | 9 | Defined in: [src/components/UserPortal/StartPostModal/StartPostModal.tsx:52](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/StartPostModal/StartPostModal.tsx#L52) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | `InterfaceStartPostModalProps` 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/components/UserPortal/UserNavbar/UserNavbar.tsx:61](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L61) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`props`): `Element` 8 | 9 | Defined in: [src/components/UsersTableItem/UsersTableItem.tsx:63](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/UsersTableItem/UsersTableItem.tsx#L63) 10 | 11 | ## Parameters 12 | 13 | ### props 14 | 15 | `Props` 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Venues/Modal/VenueModal/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `Element` 8 | 9 | Defined in: [src/components/Venues/Modal/VenueModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Venues/Modal/VenueModal.tsx#L58) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | [`InterfaceVenueModalProps`](../interfaces/InterfaceVenueModalProps.md) 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`__namedParameters`): `Element` 8 | 9 | Defined in: [src/components/Venues/VenueCard.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Venues/VenueCard.tsx#L47) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | `InterfaceVenueCardProps` 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Venues/VenueCardMocks/variables/MOCK_HANDLE_DELETE.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MOCK\_HANDLE\_DELETE 6 | 7 | > `const` **MOCK\_HANDLE\_DELETE**: `Mock` 8 | 9 | Defined in: [src/components/Venues/VenueCardMocks.ts:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Venues/VenueCardMocks.ts#L29) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/Venues/VenueCardMocks/variables/MOCK_HANDLE_EDIT.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: MOCK\_HANDLE\_EDIT 6 | 7 | > `const` **MOCK\_HANDLE\_EDIT**: `Mock` 8 | 9 | Defined in: [src/components/Venues/VenueCardMocks.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/Venues/VenueCardMocks.ts#L28) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/components/test-utils/TestWrapper/functions/TestWrapper.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: TestWrapper() 6 | 7 | > **TestWrapper**(`__namedParameters`): `Element` 8 | 9 | Defined in: [src/components/test-utils/TestWrapper.tsx:51](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/components/test-utils/TestWrapper.tsx#L51) 10 | 11 | ## Parameters 12 | 13 | ### \_\_namedParameters 14 | 15 | `InterfaceTestWrapperProps` 16 | 17 | ## Returns 18 | 19 | `Element` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/reportWebVitals/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`onPerfEntry`?): `void` 8 | 9 | Defined in: [src/reportWebVitals.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/reportWebVitals.ts#L4) 10 | 11 | ## Parameters 12 | 13 | ### onPerfEntry? 14 | 15 | (`metric`) => `void` 16 | 17 | ## Returns 18 | 19 | `void` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/BlockUser/BlockUser.tsx:72](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/BlockUser/BlockUser.tsx#L72) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/CommunityProfile/CommunityProfile.tsx:64](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/CommunityProfile/CommunityProfile.tsx#L64) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/EventManagement/EventManagement.tsx:78](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/EventManagement/EventManagement.tsx#L78) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/EventVolunteers/VolunteerContainer.tsx:42](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/EventVolunteers/VolunteerContainer.tsx#L42) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/ForgotPassword/ForgotPassword.tsx:63](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/ForgotPassword/ForgotPassword.tsx#L63) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/FundCampaignPledge/FundCampaignPledge.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/FundCampaignPledge/FundCampaignPledge.tsx#L47) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/Leaderboard/Leaderboard.tsx:91](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/Leaderboard/Leaderboard.tsx#L91) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/ManageTag/ManageTag.tsx:96](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/ManageTag/ManageTag.tsx#L96) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: getLanguageName() 6 | 7 | > **getLanguageName**(`code`): `string` 8 | 9 | Defined in: [src/screens/MemberDetail/MemberDetail.tsx:722](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/MemberDetail/MemberDetail.tsx#L722) 10 | 11 | ## Parameters 12 | 13 | ### code 14 | 15 | `string` 16 | 17 | ## Returns 18 | 19 | `string` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: prettyDate() 6 | 7 | > **prettyDate**(`param`): `string` 8 | 9 | Defined in: [src/screens/MemberDetail/MemberDetail.tsx:712](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/MemberDetail/MemberDetail.tsx#L712) 10 | 11 | ## Parameters 12 | 13 | ### param 14 | 15 | `string` 16 | 17 | ## Returns 18 | 19 | `string` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/OrgList/OrgList.tsx:85](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrgList/OrgList.tsx#L85) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/OrgPost/OrgPost.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrgPost/OrgPost.tsx#L34) 10 | 11 | OrgPost Component 12 | This component is responsible for rendering and managing organization posts. 13 | 14 | ## Returns 15 | 16 | `JSX.Element` 17 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/OrgSettings/OrgSettings.tsx:57](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrgSettings/OrgSettings.tsx#L57) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/OrganizationActionItems/OrganizationActionItems.tsx:90](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationActionItems/OrganizationActionItems.tsx#L90) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: itemWithGroup 6 | 7 | > `const` **itemWithGroup**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) 8 | 9 | Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:143](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationActionItems/testObject.mocks.ts#L143) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: itemWithUser 6 | 7 | > `const` **itemWithUser**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) 8 | 9 | Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:97](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationActionItems/testObject.mocks.ts#L97) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: itemWithUserImage 6 | 7 | > `const` **itemWithUserImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) 8 | 9 | Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:120](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationActionItems/testObject.mocks.ts#L120) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: itemWithVolunteer 6 | 7 | > `const` **itemWithVolunteer**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) 8 | 9 | Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:37](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationActionItems/testObject.mocks.ts#L37) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: itemWithVolunteerImage 6 | 7 | > `const` **itemWithVolunteerImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) 8 | 9 | Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:67](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationActionItems/testObject.mocks.ts#L67) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/OrganizationDashboard/OrganizationDashboard.tsx:68](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L68) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:94](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationEvents/OrganizationEvents.tsx#L94) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/OrganizationPeople/OrganizationPeople.tsx:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationPeople/OrganizationPeople.tsx#L109) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationPeople/addMember/AddMember/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/OrganizationPeople/addMember/AddMember.tsx:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationPeople/addMember/AddMember.tsx#L109) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/OrganizationTags/OrganizationTags.tsx:70](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTags.tsx#L70) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/OrganizationVenues/OrganizationVenues.tsx:65](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationVenues/OrganizationVenues.tsx#L65) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/PageNotFound/PageNotFound.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/PageNotFound/PageNotFound.tsx#L50) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/SubTags/SubTags.tsx:75](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/SubTags/SubTags.tsx#L75) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/UserPortal/Campaigns/Campaigns.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Campaigns/Campaigns.tsx#L58) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/UserPortal/Chat/Chat.tsx:57](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Chat/Chat.tsx#L57) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/UserPortal/Donate/Donate.tsx:73](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Donate/Donate.tsx#L73) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/UserPortal/Events/Events.tsx:75](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Events/Events.tsx#L75) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/UserPortal/Organizations/Organizations.tsx:124](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Organizations/Organizations.tsx#L124) 10 | 11 | Component for displaying and managing user organizations. 12 | 13 | ## Returns 14 | 15 | `JSX.Element` 16 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/UserPortal/People/People.tsx:62](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/People/People.tsx#L62) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/UserPortal/Pledges/Pledges.tsx:85](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Pledges/Pledges.tsx#L85) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/UserPortal/Posts/Posts.tsx:93](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Posts/Posts.tsx#L93) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/UserPortal/Settings/Settings.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Settings/Settings.tsx#L59) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/UserPortal/UserScreen/UserScreen.tsx:63](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/UserScreen/UserScreen.tsx#L63) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `JSX.Element` 8 | 9 | Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.tsx:87](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Volunteer/Groups/Groups.tsx#L87) 10 | 11 | ## Returns 12 | 13 | `JSX.Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx:64](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx#L64) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx:85](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx#L85) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/screens/Users/Users/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Element` 8 | 9 | Defined in: [src/screens/Users/Users.tsx:80](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/Users/Users.tsx#L80) 10 | 11 | ## Returns 12 | 13 | `Element` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Promise`\<`void`\> 8 | 9 | Defined in: [src/setup/askAndSetDockerOption/askAndSetDockerOption.ts:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/askAndSetDockerOption/askAndSetDockerOption.ts#L6) 10 | 11 | ## Returns 12 | 13 | `Promise`\<`void`\> 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(): `Promise`\<`void`\> 8 | 9 | Defined in: [src/setup/askAndUpdatePort/askAndUpdatePort.ts:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/askAndUpdatePort/askAndUpdatePort.ts#L6) 10 | 11 | ## Returns 12 | 13 | `Promise`\<`void`\> 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: askForCustomPort() 6 | 7 | > **askForCustomPort**(): `Promise`\<`number`\> 8 | 9 | Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/askForCustomPort/askForCustomPort.ts#L32) 10 | 11 | ## Returns 12 | 13 | `Promise`\<`number`\> 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: reservedPortWarning() 6 | 7 | > **reservedPortWarning**(`port`): `Promise`\<`boolean`\> 8 | 9 | Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/askForCustomPort/askForCustomPort.ts#L19) 10 | 11 | ## Parameters 12 | 13 | ### port 14 | 15 | `number` 16 | 17 | ## Returns 18 | 19 | `Promise`\<`boolean`\> 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: validatePort() 6 | 7 | > **validatePort**(`input`): `string` \| `boolean` 8 | 9 | Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/askForCustomPort/askForCustomPort.ts#L6) 10 | 11 | ## Parameters 12 | 13 | ### input 14 | 15 | `string` 16 | 17 | ## Returns 18 | 19 | `string` \| `boolean` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: askAndUpdateTalawaApiUrl() 6 | 7 | > **askAndUpdateTalawaApiUrl**(): `Promise`\<`void`\> 8 | 9 | Defined in: [src/setup/askForDocker/askForDocker.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/askForDocker/askForDocker.ts#L33) 10 | 11 | ## Returns 12 | 13 | `Promise`\<`void`\> 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: askForDocker() 6 | 7 | > **askForDocker**(): `Promise`\<`string`\> 8 | 9 | Defined in: [src/setup/askForDocker/askForDocker.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/askForDocker/askForDocker.ts#L12) 10 | 11 | ## Returns 12 | 13 | `Promise`\<`string`\> 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: askForTalawaApiUrl() 6 | 7 | > **askForTalawaApiUrl**(): `Promise`\<`string`\> 8 | 9 | Defined in: [src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts#L3) 10 | 11 | ## Returns 12 | 13 | `Promise`\<`string`\> 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: checkConnection() 6 | 7 | > **checkConnection**(`url`): `Promise`\<`any`\> 8 | 9 | Defined in: [src/setup/checkConnection/checkConnection.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/checkConnection/checkConnection.ts#L1) 10 | 11 | ## Parameters 12 | 13 | ### url 14 | 15 | `string` 16 | 17 | ## Returns 18 | 19 | `Promise`\<`any`\> 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: checkEnvFile() 6 | 7 | > **checkEnvFile**(): `boolean` 8 | 9 | Defined in: [src/setup/checkEnvFile/checkEnvFile.ts:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/checkEnvFile/checkEnvFile.ts#L6) 10 | 11 | ## Returns 12 | 13 | `boolean` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/modifyEnvFile.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: modifyEnvFile() 6 | 7 | > **modifyEnvFile**(): `void` 8 | 9 | Defined in: [src/setup/checkEnvFile/checkEnvFile.ts:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/checkEnvFile/checkEnvFile.ts#L18) 10 | 11 | ## Returns 12 | 13 | `void` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/setup/functions/askAndSetRecaptcha.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: askAndSetRecaptcha() 6 | 7 | > **askAndSetRecaptcha**(): `Promise`\<`void`\> 8 | 9 | Defined in: [src/setup/setup.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/setup.ts#L12) 10 | 11 | ## Returns 12 | 13 | `Promise`\<`void`\> 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/setup/functions/main.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: main() 6 | 7 | > **main**(): `Promise`\<`void`\> 8 | 9 | Defined in: [src/setup/setup.ts:62](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/setup.ts#L62) 10 | 11 | ## Returns 12 | 13 | `Promise`\<`void`\> 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`key`, `value`): `void` 8 | 9 | Defined in: [src/setup/updateEnvFile/updateEnvFile.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/updateEnvFile/updateEnvFile.ts#L3) 10 | 11 | ## Parameters 12 | 13 | ### key 14 | 15 | `string` 16 | 17 | ### value 18 | 19 | `string` 20 | 21 | ## Returns 22 | 23 | `void` 24 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: validateRecaptcha() 6 | 7 | > **validateRecaptcha**(`string`): `boolean` 8 | 9 | Defined in: [src/setup/validateRecaptcha/validateRecaptcha.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/setup/validateRecaptcha/validateRecaptcha.ts#L1) 10 | 11 | ## Parameters 12 | 13 | ### string 14 | 15 | `string` 16 | 17 | ## Returns 18 | 19 | `boolean` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/state/reducers/type-aliases/RootState.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: RootState 6 | 7 | > **RootState**: `ReturnType`\<*typeof* [`reducers`](../functions/reducers.md)\> 8 | 9 | Defined in: [src/state/reducers/index.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/state/reducers/index.ts#L10) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: AppDispatch 6 | 7 | > **AppDispatch**: *typeof* `store.dispatch` 8 | 9 | Defined in: [src/state/store.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/state/store.ts#L8) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Advertisement/type/type-aliases/AdvertisementAttachment.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: AdvertisementAttachment 6 | 7 | > **AdvertisementAttachment**: `object` 8 | 9 | Defined in: [src/types/Advertisement/type.ts:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Advertisement/type.ts#L30) 10 | 11 | ## Type declaration 12 | 13 | ### mimeType 14 | 15 | > **mimeType**: `string` 16 | 17 | ### url 18 | 19 | > **url**: `string` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Advertisement/type/type-aliases/AdvertisementEdge.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: AdvertisementEdge 6 | 7 | > **AdvertisementEdge**: `object` 8 | 9 | Defined in: [src/types/Advertisement/type.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Advertisement/type.ts#L35) 10 | 11 | ## Type declaration 12 | 13 | ### cursor? 14 | 15 | > `optional` **cursor**: `string` 16 | 17 | ### node? 18 | 19 | > `optional` **node**: [`Advertisement`](Advertisement.md) 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Advertisement/type/type-aliases/CreateAdvertisementPayload.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: CreateAdvertisementPayload 6 | 7 | > **CreateAdvertisementPayload**: `object` 8 | 9 | Defined in: [src/types/Advertisement/type.ts:56](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Advertisement/type.ts#L56) 10 | 11 | ## Type declaration 12 | 13 | ### advertisement? 14 | 15 | > `optional` **advertisement**: [`Advertisement`](Advertisement.md) 16 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Comment/type/type-aliases/CommentInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: CommentInput 6 | 7 | > **CommentInput**: `object` 8 | 9 | Defined in: [src/types/Comment/type.ts:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Comment/type.ts#L15) 10 | 11 | ## Type declaration 12 | 13 | ### text 14 | 15 | > **text**: `string` 16 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/type/type-aliases/EventAttendeeInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: EventAttendeeInput 6 | 7 | > **EventAttendeeInput**: `object` 8 | 9 | Defined in: [src/types/Event/type.ts:81](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Event/type.ts#L81) 10 | 11 | ## Type declaration 12 | 13 | ### eventId 14 | 15 | > **eventId**: `string` 16 | 17 | ### userId 18 | 19 | > **userId**: `string` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/type/type-aliases/EventOrderByInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: EventOrderByInput 6 | 7 | > **EventOrderByInput**: *typeof* [`EventOrderByInput`](../variables/EventOrderByInput.md)\[keyof *typeof* [`EventOrderByInput`](../variables/EventOrderByInput.md)\] 8 | 9 | Defined in: [src/types/Event/type.ts:111](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Event/type.ts#L111) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/type/type-aliases/EventVolunteerInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: EventVolunteerInput 6 | 7 | > **EventVolunteerInput**: `object` 8 | 9 | Defined in: [src/types/Event/type.ts:98](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Event/type.ts#L98) 10 | 11 | ## Type declaration 12 | 13 | ### eventId 14 | 15 | > **eventId**: `string` 16 | 17 | ### userId 18 | 19 | > **userId**: `string` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/type/type-aliases/EventVolunteerResponse.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: EventVolunteerResponse 6 | 7 | > **EventVolunteerResponse**: *typeof* [`EventVolunteerResponse`](../variables/EventVolunteerResponse.md)\[keyof *typeof* [`EventVolunteerResponse`](../variables/EventVolunteerResponse.md)\] 8 | 9 | Defined in: [src/types/Event/type.ts:103](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Event/type.ts#L103) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/type/type-aliases/FeedbackInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: FeedbackInput 6 | 7 | > **FeedbackInput**: `object` 8 | 9 | Defined in: [src/types/Event/type.ts:57](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Event/type.ts#L57) 10 | 11 | ## Type declaration 12 | 13 | ### eventId 14 | 15 | > **eventId**: `string` 16 | 17 | ### rating 18 | 19 | > **rating**: `number` 20 | 21 | ### review? 22 | 23 | > `optional` **review**: `string` 24 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/type/variables/EventVolunteerResponse.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: EventVolunteerResponse 6 | 7 | > `const` **EventVolunteerResponse**: `object` 8 | 9 | Defined in: [src/types/Event/type.ts:103](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Event/type.ts#L103) 10 | 11 | ## Type declaration 12 | 13 | ### NO 14 | 15 | > `readonly` **NO**: `"NO"` = `'NO'` 16 | 17 | ### YES 18 | 19 | > `readonly` **YES**: `"YES"` = `'YES'` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/utils/variables/holidays.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: holidays 6 | 7 | > `const` **holidays**: [`InterfaceHoliday`](../interfaces/InterfaceHoliday.md)[] 8 | 9 | Defined in: [src/types/Event/utils.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Event/utils.ts#L7) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/utils/variables/hours.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: hours 6 | 7 | > `const` **hours**: `string`[] 8 | 9 | Defined in: [src/types/Event/utils.ts:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Event/utils.ts#L50) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/utils/variables/months.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: months 6 | 7 | > `const` **months**: `string`[] 8 | 9 | Defined in: [src/types/Event/utils.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Event/utils.ts#L35) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/utils/variables/weekdays.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: weekdays 6 | 7 | > `const` **weekdays**: `string`[] 8 | 9 | Defined in: [src/types/Event/utils.ts:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Event/utils.ts#L25) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Post/interface/interfaces/InterfaceAttachment.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Interface: InterfaceAttachment 6 | 7 | Defined in: [src/types/Post/interface.ts:72](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Post/interface.ts#L72) 8 | 9 | ## Properties 10 | 11 | ### url 12 | 13 | > **url**: `string` 14 | 15 | Defined in: [src/types/Post/interface.ts:73](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Post/interface.ts#L73) 16 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Post/interface/interfaces/InterfaceCreator.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Interface: InterfaceCreator 6 | 7 | Defined in: [src/types/Post/interface.ts:76](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Post/interface.ts#L76) 8 | 9 | ## Properties 10 | 11 | ### id 12 | 13 | > **id**: `string` 14 | 15 | Defined in: [src/types/Post/interface.ts:77](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Post/interface.ts#L77) 16 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Post/type/type-aliases/PostLikes.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: PostLikes 6 | 7 | > **PostLikes**: `object`[] 8 | 9 | Defined in: [src/types/Post/type.ts:99](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Post/type.ts#L99) 10 | 11 | ## Type declaration 12 | 13 | ### firstName 14 | 15 | > **firstName**: `string` 16 | 17 | ### id 18 | 19 | > **id**: `string` 20 | 21 | ### lastName 22 | 23 | > **lastName**: `string` 24 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Post/type/type-aliases/PostOrderByInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: PostOrderByInput 6 | 7 | > **PostOrderByInput**: *typeof* [`PostOrderByInput`](../variables/PostOrderByInput.md)\[keyof *typeof* [`PostOrderByInput`](../variables/PostOrderByInput.md)\] 8 | 9 | Defined in: [src/types/Post/type.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Post/type.ts#L32) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Tag/utils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: TAGS\_QUERY\_DATA\_CHUNK\_SIZE 6 | 7 | > `const` **TAGS\_QUERY\_DATA\_CHUNK\_SIZE**: `10` = `10` 8 | 9 | Defined in: [src/types/Tag/utils.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/Tag/utils.ts#L1) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/User/type/type-aliases/CreateUserFamilyInput.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: CreateUserFamilyInput 6 | 7 | > **CreateUserFamilyInput**: `object` 8 | 9 | Defined in: [src/types/User/type.ts:54](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/User/type.ts#L54) 10 | 11 | ## Type declaration 12 | 13 | ### title 14 | 15 | > **title**: `string` 16 | 17 | ### userIds 18 | 19 | > **userIds**: `string`[] 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/User/type/type-aliases/UserPhone.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: UserPhone 6 | 7 | > **UserPhone**: `object` 8 | 9 | Defined in: [src/types/User/type.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/types/User/type.ts#L28) 10 | 11 | ## Type declaration 12 | 13 | ### home? 14 | 15 | > `optional` **home**: `string` 16 | 17 | ### mobile? 18 | 19 | > `optional` **mobile**: `string` 20 | 21 | ### work? 22 | 23 | > `optional` **work**: `string` 24 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/MinioDownload/functions/useMinioDownload.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: useMinioDownload() 6 | 7 | > **useMinioDownload**(): `InterfaceMinioDownload` 8 | 9 | Defined in: [src/utils/MinioDownload.ts:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/MinioDownload.ts#L11) 10 | 11 | ## Returns 12 | 13 | `InterfaceMinioDownload` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/MinioUpload/functions/useMinioUpload.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: useMinioUpload() 6 | 7 | > **useMinioUpload**(): `InterfaceMinioUpload` 8 | 9 | Defined in: [src/utils/MinioUpload.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/MinioUpload.ts#L12) 10 | 11 | ## Returns 12 | 13 | `InterfaceMinioUpload` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: exportToCSV() 6 | 7 | > **exportToCSV**(`data`, `filename`): `void` 8 | 9 | Defined in: [src/utils/chartToPdf.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/chartToPdf.ts#L3) 10 | 11 | ## Parameters 12 | 13 | ### data 14 | 15 | `CSVData` 16 | 17 | ### filename 18 | 19 | `string` 20 | 21 | ## Returns 22 | 23 | `void` 24 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/convertToBase64/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`file`): `Promise`\<`string`\> 8 | 9 | Defined in: [src/utils/convertToBase64.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/convertToBase64.ts#L1) 10 | 11 | ## Parameters 12 | 13 | ### file 14 | 15 | `File` 16 | 17 | ## Returns 18 | 19 | `Promise`\<`string`\> 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/currency/variables/currencyOptions.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: currencyOptions 6 | 7 | > `const` **currencyOptions**: `object`[] 8 | 9 | Defined in: [src/utils/currency.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/currency.ts#L1) 10 | 11 | ## Type declaration 12 | 13 | ### label 14 | 15 | > **label**: `string` = `'AED'` 16 | 17 | ### value 18 | 19 | > **value**: `string` = `'AED'` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/currency/variables/currencySymbols.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: currencySymbols 6 | 7 | > `const` **currencySymbols**: `object` 8 | 9 | Defined in: [src/utils/currency.ts:166](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/currency.ts#L166) 10 | 11 | ## Index Signature 12 | 13 | \[`key`: `string`\]: `string` 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: formatDate() 6 | 7 | > **formatDate**(`dateString`): `string` 8 | 9 | Defined in: [src/utils/dateFormatter.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/dateFormatter.ts#L1) 10 | 11 | ## Parameters 12 | 13 | ### dateString 14 | 15 | `string` 16 | 17 | ## Returns 18 | 19 | `string` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/fieldTypes/variables/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: default 6 | 7 | > `const` **default**: `string`[] 8 | 9 | Defined in: [src/utils/fieldTypes.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/fieldTypes.ts#L1) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/filehash/functions/calculateFileHash.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: calculateFileHash() 6 | 7 | > **calculateFileHash**(`file`): `Promise`\<`string`\> 8 | 9 | Defined in: [src/utils/filehash.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/filehash.ts#L1) 10 | 11 | ## Parameters 12 | 13 | ### file 14 | 15 | `File` 16 | 17 | ## Returns 18 | 19 | `Promise`\<`string`\> 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: countryOptions 6 | 7 | > `const` **countryOptions**: `object`[] 8 | 9 | Defined in: [src/utils/formEnumFields.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/formEnumFields.ts#L1) 10 | 11 | ## Type declaration 12 | 13 | ### label 14 | 15 | > **label**: `string` = `'Afghanistan'` 16 | 17 | ### value 18 | 19 | > **value**: `string` = `'af'` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: educationGradeEnum 6 | 7 | > `const` **educationGradeEnum**: `object`[] 8 | 9 | Defined in: [src/utils/formEnumFields.ts:202](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/formEnumFields.ts#L202) 10 | 11 | ## Type declaration 12 | 13 | ### label 14 | 15 | > **label**: `string` = `'No-Grade'` 16 | 17 | ### value 18 | 19 | > **value**: `string` = `'no_grade'` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: employmentStatusEnum 6 | 7 | > `const` **employmentStatusEnum**: `object`[] 8 | 9 | Defined in: [src/utils/formEnumFields.ts:311](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/formEnumFields.ts#L311) 10 | 11 | ## Type declaration 12 | 13 | ### label 14 | 15 | > **label**: `string` = `'Full-Time'` 16 | 17 | ### value 18 | 19 | > **value**: `string` = `'full_time'` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: genderEnum 6 | 7 | > `const` **genderEnum**: `object`[] 8 | 9 | Defined in: [src/utils/formEnumFields.ts:296](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/formEnumFields.ts#L296) 10 | 11 | ## Type declaration 12 | 13 | ### label 14 | 15 | > **label**: `string` = `'Male'` 16 | 17 | ### value 18 | 19 | > **value**: `string` = `'male'` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: maritalStatusEnum 6 | 7 | > `const` **maritalStatusEnum**: `object`[] 8 | 9 | Defined in: [src/utils/formEnumFields.ts:269](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/formEnumFields.ts#L269) 10 | 11 | ## Type declaration 12 | 13 | ### label 14 | 15 | > **label**: `string` = `'Single'` 16 | 17 | ### value 18 | 19 | > **value**: `string` = `'single'` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: userRoleEnum 6 | 7 | > `const` **userRoleEnum**: `object`[] 8 | 9 | Defined in: [src/utils/formEnumFields.ts:326](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/formEnumFields.ts#L326) 10 | 11 | ## Type declaration 12 | 13 | ### label 14 | 15 | > **label**: `string` = `'User'` 16 | 17 | ### value 18 | 19 | > **value**: `string` = `'USER'` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/getOrganizationId/functions/default.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: default() 6 | 7 | > **default**(`url`): `string` 8 | 9 | Defined in: [src/utils/getOrganizationId.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/getOrganizationId.ts#L1) 10 | 11 | ## Parameters 12 | 13 | ### url 14 | 15 | `string` 16 | 17 | ## Returns 18 | 19 | `string` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: refreshToken() 6 | 7 | > **refreshToken**(): `Promise`\<`boolean`\> 8 | 9 | Defined in: [src/utils/getRefreshToken.ts:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/getRefreshToken.ts#L6) 10 | 11 | ## Returns 12 | 13 | `Promise`\<`boolean`\> 14 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Interface: InterfaceMapType 6 | 7 | Defined in: [src/utils/interfaces.ts:1337](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/interfaces.ts#L1337) 8 | 9 | ## Indexable 10 | 11 | \[`key`: `string`\]: `string` 12 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Interface: InterfaceQueryOrganizationUserTags 6 | 7 | Defined in: [src/utils/interfaces.ts:943](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/interfaces.ts#L943) 8 | 9 | ## Properties 10 | 11 | ### userTags 12 | 13 | > **userTags**: `InterfaceTagNodeData` 14 | 15 | Defined in: [src/utils/interfaces.ts:944](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/interfaces.ts#L944) 16 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/languages/variables/languageArray.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: languageArray 6 | 7 | > `const` **languageArray**: `string`[] 8 | 9 | Defined in: [src/utils/languages.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/languages.ts#L1) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/languages/variables/languages.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: languages 6 | 7 | > `const` **languages**: `object`[] 8 | 9 | Defined in: [src/utils/languages.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/languages.ts#L3) 10 | 11 | ## Type declaration 12 | 13 | ### code 14 | 15 | > **code**: `string` = `'en'` 16 | 17 | ### country\_code 18 | 19 | > **country\_code**: `string` = `'gb'` 20 | 21 | ### name 22 | 23 | > **name**: `string` = `'English'` 24 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: isValidLink() 6 | 7 | > **isValidLink**(`link`): `boolean` 8 | 9 | Defined in: [src/utils/linkValidator.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/linkValidator.ts#L1) 10 | 11 | ## Parameters 12 | 13 | ### link 14 | 15 | `string` 16 | 17 | ## Returns 18 | 19 | `boolean` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: SortedByType 6 | 7 | > **SortedByType**: `"ASCENDING"` \| `"DESCENDING"` 8 | 9 | Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/organizationTagsUtils.ts#L54) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Type Alias: TagActionType 6 | 7 | > **TagActionType**: `"assignToTags"` \| `"removeFromTags"` 8 | 9 | Defined in: [src/utils/organizationTagsUtils.ts:51](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/organizationTagsUtils.ts#L51) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: TAGS\_QUERY\_DATA\_CHUNK\_SIZE 6 | 7 | > `const` **TAGS\_QUERY\_DATA\_CHUNK\_SIZE**: `10` = `10` 8 | 9 | Defined in: [src/utils/organizationTagsUtils.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/organizationTagsUtils.ts#L48) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/passwordValidator/functions/validatePassword.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: validatePassword() 6 | 7 | > **validatePassword**(`password`): `boolean` 8 | 9 | Defined in: [src/utils/passwordValidator.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/passwordValidator.ts#L1) 10 | 11 | ## Parameters 12 | 13 | ### password 14 | 15 | `string` 16 | 17 | ## Returns 18 | 19 | `boolean` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: Days 6 | 7 | > `const` **Days**: [`WeekDays`](../../recurrenceTypes/enumerations/WeekDays.md)[] 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceConstants.ts#L24) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: allInstances 6 | 7 | > `const` **allInstances**: [`allInstances`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#allinstances) = `RecurringEventMutationType.allInstances` 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceConstants.ts#L46) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: daysOptions 6 | 7 | > `const` **daysOptions**: `string`[] 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceConstants.ts#L21) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: endsAfter 6 | 7 | > `const` **endsAfter**: [`after`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#after) = `RecurrenceEndOption.after` 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:37](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceConstants.ts#L37) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: endsNever 6 | 7 | > `const` **endsNever**: [`never`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#never) = `RecurrenceEndOption.never` 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceConstants.ts#L35) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: endsOn 6 | 7 | > `const` **endsOn**: [`on`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#on) = `RecurrenceEndOption.on` 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceConstants.ts#L36) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: monthNames 6 | 7 | > `const` **monthNames**: `string`[] 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceConstants.ts#L71) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: recurrenceEndOptions 6 | 7 | > `const` **recurrenceEndOptions**: [`RecurrenceEndOption`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md)[] 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:40](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceConstants.ts#L40) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: recurringEventMutationOptions 6 | 7 | > `const` **recurringEventMutationOptions**: [`RecurringEventMutationType`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md)[] 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceConstants.ts#L48) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: thisInstance 6 | 7 | > `const` **thisInstance**: [`thisInstance`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#thisinstance) = `RecurringEventMutationType.thisInstance` 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceConstants.ts#L43) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: weekDayOccurences 6 | 7 | > `const` **weekDayOccurences**: `string`[] 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:87](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceConstants.ts#L87) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: getWeekDayOccurenceInMonth() 6 | 7 | > **getWeekDayOccurenceInMonth**(`date`): `number` 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:126](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L126) 10 | 11 | ## Parameters 12 | 13 | ### date 14 | 15 | `Date` 16 | 17 | ## Returns 18 | 19 | `number` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: isLastOccurenceOfWeekDay() 6 | 7 | > **isLastOccurenceOfWeekDay**(`date`): `boolean` 8 | 9 | Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:136](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L136) 10 | 11 | ## Parameters 12 | 13 | ### date 14 | 15 | `Date` 16 | 17 | ## Returns 18 | 19 | `boolean` 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/sanitizeAvatar/functions/sanitizeAvatars.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: sanitizeAvatars() 6 | 7 | > **sanitizeAvatars**(`file`, `fallbackUrl`): `string` 8 | 9 | Defined in: [src/utils/sanitizeAvatar.ts:1](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/sanitizeAvatar.ts#L1) 10 | 11 | ## Parameters 12 | 13 | ### file 14 | 15 | `File` 16 | 17 | ### fallbackUrl 18 | 19 | `string` 20 | 21 | ## Returns 22 | 23 | `string` 24 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: dateTimeFields 6 | 7 | > `const` **dateTimeFields**: `object` 8 | 9 | Defined in: [src/utils/timezoneUtils/dateTimeConfig.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/timezoneUtils/dateTimeConfig.ts#L3) 10 | 11 | ## Type declaration 12 | 13 | ### directFields 14 | 15 | > **directFields**: `string`[] 16 | 17 | ### pairedFields 18 | 19 | > **pairedFields**: `object`[] 20 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: requestMiddleware 6 | 7 | > `const` **requestMiddleware**: `ApolloLink` 8 | 9 | Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:84](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/timezoneUtils/dateTimeMiddleware.ts#L84) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Variable: responseMiddleware 6 | 7 | > `const` **responseMiddleware**: `ApolloLink` 8 | 9 | Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:94](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/timezoneUtils/dateTimeMiddleware.ts#L94) 10 | -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/urlToFile/functions/urlToFile.md: -------------------------------------------------------------------------------- 1 | [Admin Docs](/) 2 | 3 | *** 4 | 5 | # Function: urlToFile() 6 | 7 | > **urlToFile**(`url`): `Promise`\<`File`\> 8 | 9 | Defined in: [src/utils/urlToFile.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/urlToFile.ts#L2) 10 | 11 | ## Parameters 12 | 13 | ### url 14 | 15 | `string` 16 | 17 | ## Returns 18 | 19 | `Promise`\<`File`\> 20 | -------------------------------------------------------------------------------- /docs/docs/docs/developer-resources/introduction.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: introduction 3 | title: Introduction 4 | slug: /developer-resources/introduction 5 | sidebar_position: 1 6 | --- 7 | 8 | Welcome to Talawa-Admin 9 | 10 | Refer to `CODE_STYLE.md` for coding conventions and best practices to follow when contributing. 11 | -------------------------------------------------------------------------------- /docs/docs/docs/developer-resources/operation.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: operation 3 | title: Operation 4 | slug: /developer-resources/operation 5 | sidebar_position: 2 6 | --- 7 | 8 | ## Introduction 9 | 10 | This section covers how Talawa Admin operates 11 | 12 | Coming soon. 13 | -------------------------------------------------------------------------------- /docs/static/img/docs/plugin/plugin-store-navbar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/docs/static/img/docs/plugin/plugin-store-navbar.PNG -------------------------------------------------------------------------------- /docs/static/img/docs/plugin/plugin-types.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/docs/static/img/docs/plugin/plugin-types.PNG -------------------------------------------------------------------------------- /docs/static/img/docs/plugin/store.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/docs/static/img/docs/plugin/store.PNG -------------------------------------------------------------------------------- /docs/static/img/docs/plugin/talawa.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/docs/static/img/docs/plugin/talawa.PNG -------------------------------------------------------------------------------- /docs/static/img/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/docs/static/img/icons/logo.png -------------------------------------------------------------------------------- /docs/static/img/markdown/installation/REACT_SITE_KEY.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/docs/static/img/markdown/installation/REACT_SITE_KEY.webp -------------------------------------------------------------------------------- /docs/static/img/markdown/installation/Register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/docs/static/img/markdown/installation/Register.png -------------------------------------------------------------------------------- /docs/static/img/markdown/installation/install1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/docs/static/img/markdown/installation/install1.png -------------------------------------------------------------------------------- /docs/static/img/markdown/installation/install2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/docs/static/img/markdown/installation/install2.png -------------------------------------------------------------------------------- /docs/static/img/markdown/installation/jest-preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/docs/static/img/markdown/installation/jest-preview.webp -------------------------------------------------------------------------------- /docs/static/img/markdown/minio/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/1603e1dd50fe1410f216188db03a89bdc55b0526/docs/static/img/markdown/minio/architecture.png -------------------------------------------------------------------------------- /public/images/svg/angleRight.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | # Do not delete. This file is used to configure 2 | # python black formatting 3 | [tool.black] 4 | line-length = 79 5 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["config:base"], 3 | "baseBranches": ["develop"], 4 | "schedule": ["every weekend"], 5 | "packageRules": [ 6 | { 7 | "packagePatterns": ["*"], 8 | "groupName": "All Minor Updates", 9 | "group": true, 10 | "commitMessageAction": "Renovate Update: " 11 | } 12 | ], 13 | "labels": ["dependencies"], 14 | "branchPrefix": "renovate/", 15 | "automergeType": "pr", 16 | "automerge": true 17 | } 18 | -------------------------------------------------------------------------------- /scripts/__mocks__/@dicebear/collection.ts: -------------------------------------------------------------------------------- 1 | import { vi } from 'vitest'; 2 | 3 | export const initials = vi.fn(); 4 | -------------------------------------------------------------------------------- /scripts/__mocks__/@dicebear/core.ts: -------------------------------------------------------------------------------- 1 | import { vi } from 'vitest'; 2 | 3 | export const createAvatar = vi.fn(() => { 4 | return { 5 | toDataUri: vi.fn(() => 'mocked-data-uri'), 6 | }; 7 | }); 8 | -------------------------------------------------------------------------------- /scripts/githooks/update-toc.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import { execSync } from 'child_process'; 3 | 4 | const markdownFiles = fs 5 | .readdirSync('./') 6 | .filter((file) => file.endsWith('.md')); 7 | 8 | markdownFiles.forEach((file) => { 9 | const command = `markdown-toc -i "${file}" --bullets "-"`; 10 | execSync(command, { stdio: 'inherit' }); 11 | }); 12 | 13 | console.log('Table of contents updated successfully.'); 14 | -------------------------------------------------------------------------------- /src/Constant/fileUpload.ts: -------------------------------------------------------------------------------- 1 | // File upload constants for size and allowed types 2 | 3 | const parsed = Number(import.meta.env.VITE_UPLOAD_MAX_SIZE_MB); 4 | export const FILE_UPLOAD_MAX_SIZE_MB = 5 | !Number.isNaN(parsed) && parsed > 0 ? parsed : 5; 6 | 7 | export const FILE_UPLOAD_ALLOWED_TYPES = [ 8 | 'image/jpeg', 9 | 'image/png', 10 | 'image/gif', 11 | ] as const; 12 | -------------------------------------------------------------------------------- /src/components/EventStats/css/EventStatsWrapper.module.css: -------------------------------------------------------------------------------- 1 | button .iconWrapper { 2 | width: 32px; 3 | padding-right: 4px; 4 | margin-right: 4px; 5 | transform: translateY(4px); 6 | } 7 | 8 | button .iconWrapperSm { 9 | width: 32px; 10 | display: flex; 11 | justify-content: center; 12 | align-items: center; 13 | } 14 | -------------------------------------------------------------------------------- /src/components/Pagination/PaginationList/PaginationList.css: -------------------------------------------------------------------------------- 1 | .MuiTablePagination-selectLabel { 2 | margin-top: 1rem; 3 | } 4 | 5 | .MuiTablePagination-displayedRows { 6 | margin-top: 1rem; 7 | } 8 | -------------------------------------------------------------------------------- /src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts: -------------------------------------------------------------------------------- 1 | import inquirer from 'inquirer'; 2 | 3 | export async function askForTalawaApiUrl(): Promise { 4 | const { endpoint } = await inquirer.prompt<{ endpoint: string }>([ 5 | { 6 | type: 'input', 7 | name: 'endpoint', 8 | message: 'Enter your talawa-api endpoint:', 9 | default: 'http://localhost:4000/graphql', 10 | }, 11 | ]); 12 | 13 | const correctEndpoint = endpoint.replace(/\/graphql\/$/, '/graphql'); 14 | 15 | return correctEndpoint; 16 | } 17 | -------------------------------------------------------------------------------- /src/state/action-creators/index.ts: -------------------------------------------------------------------------------- 1 | export const updateTargets = (orgId: string | undefined) => { 2 | return (dispatch: any): void => { 3 | dispatch({ 4 | type: 'UPDATE_TARGETS', 5 | payload: orgId, 6 | }); 7 | }; 8 | }; 9 | -------------------------------------------------------------------------------- /src/state/reducers/index.ts: -------------------------------------------------------------------------------- 1 | import { combineReducers } from 'redux'; 2 | import routesReducer from './routesReducer'; 3 | import userRoutesReducer from './userRoutesReducer'; 4 | 5 | export const reducers = combineReducers({ 6 | appRoutes: routesReducer, 7 | userRoutes: userRoutesReducer, 8 | }); 9 | 10 | export type RootState = ReturnType; 11 | -------------------------------------------------------------------------------- /src/state/store.spec.tsx: -------------------------------------------------------------------------------- 1 | import { store } from './store'; 2 | describe('Testing src/state/store.ts', () => { 3 | const state = store.getState(); 4 | test('appRoutes schema should contain targets, configUrl and components', () => { 5 | expect(state.appRoutes).toMatchObject({ 6 | targets: expect.any(Array), 7 | components: expect.any(Array), 8 | }); 9 | }); 10 | }); 11 | -------------------------------------------------------------------------------- /src/types/Agenda/type.ts: -------------------------------------------------------------------------------- 1 | import type { User } from '../User/type'; 2 | import type { Organization } from 'types/Organization/type'; 3 | 4 | export type AgendaCategory = { 5 | _id: string; 6 | createdAt: Date; 7 | createdBy: User; 8 | description?: string; // Optional 9 | name: string; 10 | organization: Organization; 11 | updatedAt?: Date; // Optional 12 | updatedBy?: User; // Optional 13 | }; 14 | -------------------------------------------------------------------------------- /src/types/Avatar/interface.ts: -------------------------------------------------------------------------------- 1 | export interface InterfaceAvatarProps { 2 | name?: string; 3 | alt?: string; 4 | size?: number; 5 | containerStyle?: string; 6 | avatarStyle?: string; 7 | dataTestId?: string; 8 | radius?: number; 9 | } 10 | -------------------------------------------------------------------------------- /src/types/Comment/interface.ts: -------------------------------------------------------------------------------- 1 | import type { User } from '../User/type'; 2 | 3 | export interface InterfaceCommentCardProps { 4 | id: string; 5 | creator: Partial; 6 | likeCount: number; 7 | likedBy: Partial[]; 8 | text: string; 9 | handleLikeComment: (commentId: string) => void; 10 | handleDislikeComment: (commentId: string) => void; 11 | } 12 | -------------------------------------------------------------------------------- /src/types/Comment/type.ts: -------------------------------------------------------------------------------- 1 | import type { User } from '../User/type'; 2 | import type { Post } from '../Post/type'; 3 | 4 | export type Comment = { 5 | id: string; 6 | createdAt: Date; 7 | creator: Partial; // Optional 8 | likeCount?: number; // Optional 9 | likedBy?: User[]; // Optional 10 | post: Post; 11 | text: string; 12 | updatedAt: Date; 13 | }; 14 | 15 | export type CommentInput = { 16 | text: string; 17 | }; 18 | -------------------------------------------------------------------------------- /src/types/Contribution/interface.ts: -------------------------------------------------------------------------------- 1 | export interface InterfaceContriStatsProps { 2 | id: string; 3 | recentAmount: string; 4 | highestAmount: string; 5 | totalAmount: string; 6 | } 7 | 8 | export interface InterfaceOrgContriCardsProps { 9 | key: string; 10 | id: string; 11 | userName: string; 12 | contriDate: string; 13 | contriAmount: string; 14 | contriTransactionId: string; 15 | userEmail: string; 16 | } 17 | -------------------------------------------------------------------------------- /src/types/Donation/interface.ts: -------------------------------------------------------------------------------- 1 | export interface InterfaceDonation { 2 | _id: string; 3 | nameOfUser: string; 4 | amount: string; 5 | userId: string; 6 | payPalId: string; 7 | updatedAt: string; 8 | } 9 | 10 | export interface InterfaceDonationCardProps { 11 | id: string; 12 | name: string; 13 | amount: string; 14 | userId: string; 15 | payPalId: string; 16 | updatedAt: string; 17 | } 18 | -------------------------------------------------------------------------------- /src/types/DropDown/interface.ts: -------------------------------------------------------------------------------- 1 | import type { TargetsType } from 'state/reducers/routesReducer'; 2 | export interface InterfaceDropDownProps { 3 | parentContainerStyle?: string; 4 | btnStyle?: string; 5 | btnTextStyle?: string; 6 | } 7 | 8 | export interface InterfaceCollapsibleDropdown { 9 | showDropdown: boolean; 10 | target: TargetsType; 11 | setShowDropdown: React.Dispatch>; 12 | } 13 | -------------------------------------------------------------------------------- /src/types/User/interface.ts: -------------------------------------------------------------------------------- 1 | import type { Address } from './type'; 2 | 3 | export interface InterfaceUser { 4 | _id: string; 5 | address?: Address; 6 | birthDate?: Date; 7 | createdAt: Date; 8 | email: string; 9 | firstName: string; 10 | lastName: string; 11 | gender?: string; 12 | image?: string; 13 | updatedAt?: Date; 14 | userType?: string; 15 | } 16 | 17 | export interface InterfaceUserAttendee { 18 | _id: string; 19 | userId: string; 20 | isRegistered: boolean; 21 | __typename: string; 22 | time: string; 23 | } 24 | -------------------------------------------------------------------------------- /src/types/membership.ts: -------------------------------------------------------------------------------- 1 | import type { User } from './User/type'; 2 | import type { Organization } from 'types/Organization/type'; 3 | 4 | export type MembershipRequest = { 5 | _id: string; 6 | organization: Organization; 7 | user: User; 8 | }; 9 | -------------------------------------------------------------------------------- /src/types/pagination.ts: -------------------------------------------------------------------------------- 1 | export type DefaultConnectionPageInfo = { 2 | hasNextPage: boolean; 3 | hasPreviousPage: boolean; 4 | startCursor?: string; 5 | endCursor?: string; 6 | }; 7 | -------------------------------------------------------------------------------- /src/utils/filehash.ts: -------------------------------------------------------------------------------- 1 | export const calculateFileHash = async (file: File): Promise => { 2 | const buffer = await file.arrayBuffer(); 3 | const hashBuffer = await crypto.subtle.digest('SHA-256', buffer); 4 | const hashArray = Array.from(new Uint8Array(hashBuffer)); 5 | const hashHex = hashArray 6 | .map((b) => b.toString(16).padStart(2, '0')) 7 | .join(''); 8 | return hashHex; 9 | }; 10 | -------------------------------------------------------------------------------- /src/utils/getOrganizationId.ts: -------------------------------------------------------------------------------- 1 | const getOrganizationId = (url: string): string => { 2 | const id = url?.split('=')[1]; 3 | 4 | return id?.split('#')[0]; 5 | }; 6 | 7 | export default getOrganizationId; 8 | -------------------------------------------------------------------------------- /src/utils/linkValid.spec.tsx: -------------------------------------------------------------------------------- 1 | import { isValidLink } from './linkValidator'; 2 | 3 | describe('Testing link validator', () => { 4 | it('returns true for a valid link', () => { 5 | const validLink = 'https://www.example.com'; 6 | const result = isValidLink(validLink); 7 | expect(result).toBe(true); 8 | }); 9 | 10 | it('returns false for an invalid link', () => { 11 | const invalidLink = 'not a valid link'; 12 | const result = isValidLink(invalidLink); 13 | expect(result).toBe(false); 14 | }); 15 | }); 16 | -------------------------------------------------------------------------------- /src/utils/passwordValidator.ts: -------------------------------------------------------------------------------- 1 | export const validatePassword = (password: string): boolean => { 2 | const minLength = 8; 3 | const hasSpecialChar = /[!@#$%^&*(),.?":{}|<>]/.test(password); 4 | const hasNumber = /\d/.test(password); 5 | const hasUpperCase = /[A-Z]/.test(password); 6 | const hasLowerCase = /[a-z]/.test(password); 7 | return ( 8 | password.length >= minLength && 9 | hasSpecialChar && 10 | hasNumber && 11 | hasUpperCase && 12 | hasLowerCase 13 | ); 14 | }; 15 | --------------------------------------------------------------------------------