├── .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-assign.yml │ ├── auto-label.json5 │ ├── check-tsdoc.js │ ├── codeql-codescan.yml │ ├── config │ └── check-pr-issue-skip-usernames.txt │ ├── issue-assigned.yml │ ├── issue-unassigned.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 │ └── itskip_disable_check.py │ └── stale.yml ├── .gitignore ├── .graphqlrc.yml ├── .husky ├── commit-msg ├── post-merge └── pre-commit ├── .lintstagedrc.json ├── .nojekyll ├── .prettierignore ├── .prettierrc ├── .pydocstyle ├── .vscode └── settings.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CODE_STYLE.md ├── CONTRIBUTING.md ├── DOCUMENTATION.md ├── INSTALLATION.md ├── ISSUE_GUIDELINES.md ├── LICENSE ├── PR_GUIDELINES.md ├── README.md ├── commitlint.config.js ├── config ├── babel.config.cjs ├── docker │ └── setup │ │ ├── nginx.conf │ │ └── nginx.prod.conf └── vite.config.ts ├── cypress.config.ts ├── cypress ├── README.md ├── e2e │ ├── admin_spec │ │ ├── actionItem.cy.ts │ │ ├── advertisement.cy.ts │ │ ├── event.cy.ts │ │ ├── leftDrawer.cy.ts │ │ ├── people.cy.ts │ │ └── posts.cy.ts │ ├── dashboard_spec │ │ ├── adminDashboard.cy.ts │ │ └── userDashboard.cy.ts │ └── login_spec │ │ ├── adminLogin.cy.ts │ │ └── userLogin.cy.ts ├── fixtures │ ├── advertisementData.json │ ├── advertisement_banner.png │ └── users.json ├── pageObjects │ ├── AdminPortal │ │ ├── ActionItemPage.ts │ │ ├── AdminDashboard.ts │ │ ├── AdminEventPage.ts │ │ ├── AdvertisementPage.ts │ │ ├── LeftDrawer.ts │ │ ├── PeoplePage.ts │ │ └── PostPage.ts │ ├── UserPortal │ │ └── UserDashboard.ts │ └── auth │ │ └── LoginPage.ts └── support │ ├── commands.ts │ └── e2e.ts ├── docker ├── Dockerfile.deploy ├── Dockerfile.dev ├── Dockerfile.prod ├── docker-compose.deploy.yaml ├── docker-compose.dev.yaml └── docker-compose.prod.yaml ├── docs ├── .gitignore ├── CNAME ├── README.md ├── 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_USE_RECAPTCHA.md │ │ │ │ │ └── RECAPTCHA_SITE_KEY.md │ │ │ └── fileUpload │ │ │ │ └── variables │ │ │ │ ├── FILE_UPLOAD_ALLOWED_TYPES.md │ │ │ │ └── FILE_UPLOAD_MAX_SIZE_MB.md │ │ ├── DeleteUser │ │ │ └── variables │ │ │ │ └── default.md │ │ ├── GraphQl │ │ │ ├── Mutations │ │ │ │ ├── ActionItemCategoryMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_ACTION_ITEM_CATEGORY_MUTATION.md │ │ │ │ │ │ ├── DELETE_ACTION_ITEM_CATEGORY_MUTATION.md │ │ │ │ │ │ └── UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md │ │ │ │ ├── ActionItemMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── COMPLETE_ACTION_ITEM_FOR_INSTANCE.md │ │ │ │ │ │ ├── CREATE_ACTION_ITEM_MUTATION.md │ │ │ │ │ │ ├── DELETE_ACTION_ITEM_FOR_INSTANCE.md │ │ │ │ │ │ ├── DELETE_ACTION_ITEM_MUTATION.md │ │ │ │ │ │ ├── MARK_ACTION_ITEM_AS_PENDING_FOR_INSTANCE.md │ │ │ │ │ │ ├── MARK_ACTION_ITEM_AS_PENDING_MUTATION.md │ │ │ │ │ │ ├── UPDATE_ACTION_ITEM_FOR_INSTANCE.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 │ │ │ │ │ │ ├── DELETE_COMMENT.md │ │ │ │ │ │ ├── LIKE_COMMENT.md │ │ │ │ │ │ ├── UNLIKE_COMMENT.md │ │ │ │ │ │ └── UPDATE_COMMENT.md │ │ │ │ ├── EventAttendeeMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── ADD_EVENT_ATTENDEE.md │ │ │ │ │ │ ├── MARK_CHECKIN.md │ │ │ │ │ │ └── REMOVE_EVENT_ATTENDEE.md │ │ │ │ ├── EventMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_EVENT_MUTATION.md │ │ │ │ │ │ ├── DELETE_ENTIRE_RECURRING_EVENT_SERIES_MUTATION.md │ │ │ │ │ │ ├── DELETE_SINGLE_EVENT_INSTANCE_MUTATION.md │ │ │ │ │ │ ├── DELETE_STANDALONE_EVENT_MUTATION.md │ │ │ │ │ │ ├── DELETE_THIS_AND_FOLLOWING_EVENTS_MUTATION.md │ │ │ │ │ │ ├── REGISTER_EVENT.md │ │ │ │ │ │ ├── UPDATE_ENTIRE_RECURRING_EVENT_SERIES_MUTATION.md │ │ │ │ │ │ ├── UPDATE_EVENT_MUTATION.md │ │ │ │ │ │ ├── UPDATE_SINGLE_RECURRING_EVENT_INSTANCE_MUTATION.md │ │ │ │ │ │ └── UPDATE_THIS_AND_FOLLOWING_EVENTS_MUTATION.md │ │ │ │ ├── EventVolunteerMutation │ │ │ │ │ └── variables │ │ │ │ │ │ ├── ADD_VOLUNTEER.md │ │ │ │ │ │ ├── CREATE_VOLUNTEER_GROUP.md │ │ │ │ │ │ ├── CREATE_VOLUNTEER_MEMBERSHIP.md │ │ │ │ │ │ ├── DELETE_VOLUNTEER.md │ │ │ │ │ │ ├── DELETE_VOLUNTEER_FOR_INSTANCE.md │ │ │ │ │ │ ├── DELETE_VOLUNTEER_GROUP.md │ │ │ │ │ │ ├── DELETE_VOLUNTEER_GROUP_FOR_INSTANCE.md │ │ │ │ │ │ ├── UPDATE_VOLUNTEER_GROUP.md │ │ │ │ │ │ └── UPDATE_VOLUNTEER_MEMBERSHIP.md │ │ │ │ ├── FundMutation │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_FUND_MUTATION.md │ │ │ │ │ │ └── UPDATE_FUND_MUTATION.md │ │ │ │ ├── OrganizationMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CANCEL_MEMBERSHIP_REQUEST.md │ │ │ │ │ │ ├── CREATE_CHAT.md │ │ │ │ │ │ ├── CREATE_CHAT_MEMBERSHIP.md │ │ │ │ │ │ ├── CREATE_SAMPLE_ORGANIZATION_MUTATION.md │ │ │ │ │ │ ├── DELETE_CHAT.md │ │ │ │ │ │ ├── DELETE_CHAT_MEMBERSHIP.md │ │ │ │ │ │ ├── DELETE_CHAT_MESSAGE.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_CHAT_MEMBERSHIP.md │ │ │ │ │ │ └── UPDATE_USER_ROLE_IN_ORG_MUTATION.md │ │ │ │ ├── PledgeMutation │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_PLEDGE.md │ │ │ │ │ │ ├── DELETE_PLEDGE.md │ │ │ │ │ │ └── UPDATE_PLEDGE.md │ │ │ │ ├── PluginMutations │ │ │ │ │ └── variables │ │ │ │ │ │ ├── CREATE_PLUGIN_MUTATION.md │ │ │ │ │ │ ├── DELETE_PLUGIN_MUTATION.md │ │ │ │ │ │ ├── INSTALL_PLUGIN_MUTATION.md │ │ │ │ │ │ ├── UPDATE_PLUGIN_MUTATION.md │ │ │ │ │ │ └── UPLOAD_PLUGIN_ZIP_MUTATION.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_EVENT_INVITATION.md │ │ │ │ │ ├── ACCEPT_ORGANIZATION_REQUEST_MUTATION.md │ │ │ │ │ ├── ADD_ADMIN_MUTATION.md │ │ │ │ │ ├── BLOCK_USER_MUTATION_PG.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_ORGANIZATION_MUTATION.md │ │ │ │ │ ├── DELETE_POST_MUTATION.md │ │ │ │ │ ├── DONATE_TO_ORGANIZATION.md │ │ │ │ │ ├── FORGOT_PASSWORD_MUTATION.md │ │ │ │ │ ├── GENERATE_OTP_MUTATION.md │ │ │ │ │ ├── GET_FILE_PRESIGNEDURL.md │ │ │ │ │ ├── PRESIGNED_URL.md │ │ │ │ │ ├── RECAPTCHA_MUTATION.md │ │ │ │ │ ├── REFRESH_TOKEN_MUTATION.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 │ │ │ │ │ ├── SEND_EVENT_INVITATIONS.md │ │ │ │ │ ├── SIGNUP_MUTATION.md │ │ │ │ │ ├── UNBLOCK_USER_MUTATION_PG.md │ │ │ │ │ ├── UPDATE_COMMUNITY_PG.md │ │ │ │ │ ├── UPDATE_CURRENT_USER_MUTATION.md │ │ │ │ │ ├── UPDATE_EVENT_MUTATION.md │ │ │ │ │ ├── UPDATE_ORGANIZATION_MUTATION.md │ │ │ │ │ ├── UPDATE_POST_MUTATION.md │ │ │ │ │ ├── UPDATE_POST_VOTE.md │ │ │ │ │ ├── UPDATE_SESSION_TIMEOUT_PG.md │ │ │ │ │ ├── UPDATE_USER_PASSWORD_MUTATION.md │ │ │ │ │ └── VERIFY_EVENT_INVITATION.md │ │ │ └── Queries │ │ │ │ ├── ActionItemCategoryQueries │ │ │ │ └── variables │ │ │ │ │ ├── ACTION_ITEM_CATEGORY_LIST.md │ │ │ │ │ └── GET_ACTION_ITEM_CATEGORY.md │ │ │ │ ├── ActionItemQueries │ │ │ │ └── variables │ │ │ │ │ ├── ACTION_ITEM_LIST.md │ │ │ │ │ └── GET_EVENT_ACTION_ITEMS.md │ │ │ │ ├── AdvertisementQueries │ │ │ │ └── variables │ │ │ │ │ └── ORGANIZATION_ADVERTISEMENT_LIST.md │ │ │ │ ├── AgendaCategoryQueries │ │ │ │ └── variables │ │ │ │ │ └── AGENDA_ITEM_CATEGORY_LIST.md │ │ │ │ ├── AgendaItemQueries │ │ │ │ └── variables │ │ │ │ │ └── AgendaItemByEvent.md │ │ │ │ ├── CommentQueries │ │ │ │ └── variables │ │ │ │ │ └── GET_POST_COMMENTS.md │ │ │ │ ├── EventVolunteerQueries │ │ │ │ └── variables │ │ │ │ │ ├── EVENT_VOLUNTEER_GROUP_LIST.md │ │ │ │ │ ├── GET_EVENT_VOLUNTEERS.md │ │ │ │ │ ├── GET_EVENT_VOLUNTEER_GROUPS.md │ │ │ │ │ ├── USER_EVENTS_VOLUNTEER.md │ │ │ │ │ ├── USER_VOLUNTEER_MEMBERSHIP.md │ │ │ │ │ └── VOLUNTEER_RANKING.md │ │ │ │ ├── NotificationQueries │ │ │ │ └── variables │ │ │ │ │ ├── GET_USER_NOTIFICATIONS.md │ │ │ │ │ └── MARK_NOTIFICATION_AS_READ.md │ │ │ │ ├── OrganizationQueries │ │ │ │ └── variables │ │ │ │ │ ├── ORGANIZATION_MEMBERS.md │ │ │ │ │ ├── ORGANIZATION_PINNED_POST_LIST.md │ │ │ │ │ ├── ORGANIZATION_POST_LIST.md │ │ │ │ │ ├── ORGANIZATION_POST_LIST_WITH_VOTES.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 │ │ │ │ │ ├── CHATS_LIST.md │ │ │ │ │ ├── CHAT_BY_ID.md │ │ │ │ │ ├── GET_ALL_PLUGINS.md │ │ │ │ │ ├── IS_SAMPLE_ORGANIZATION_QUERY.md │ │ │ │ │ └── UNREAD_CHATS.md │ │ │ │ ├── Queries │ │ │ │ └── variables │ │ │ │ │ ├── ALL_ORGANIZATIONS_PG.md │ │ │ │ │ ├── CURRENT_USER.md │ │ │ │ │ ├── EVENT_ATTENDEES.md │ │ │ │ │ ├── EVENT_CHECKINS.md │ │ │ │ │ ├── EVENT_DETAILS.md │ │ │ │ │ ├── EVENT_DETAILS_BASIC.md │ │ │ │ │ ├── EVENT_FEEDBACKS.md │ │ │ │ │ ├── EVENT_REGISTRANTS.md │ │ │ │ │ ├── GET_COMMUNITY_DATA_PG.md │ │ │ │ │ ├── GET_COMMUNITY_SESSION_TIMEOUT_DATA_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_BASIC_DATA.md │ │ │ │ │ ├── GET_ORGANIZATION_BLOCKED_USERS_COUNT.md │ │ │ │ │ ├── GET_ORGANIZATION_BLOCKED_USERS_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_DATA_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_EVENTS_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_EVENTS_USER_PORTAL_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_MEMBERS_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_POSTS_COUNT_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_POSTS_PG.md │ │ │ │ │ ├── GET_ORGANIZATION_VENUES_COUNT.md │ │ │ │ │ ├── GET_ORGANIZATION_VENUES_PG.md │ │ │ │ │ ├── GET_POSTS_BY_ORG.md │ │ │ │ │ ├── GET_USER_BY_ID.md │ │ │ │ │ ├── MEMBERSHIP_REQUEST.md │ │ │ │ │ ├── MEMBERS_LIST.md │ │ │ │ │ ├── MEMBERS_LIST_PG.md │ │ │ │ │ ├── ORGANIZATIONS_LIST.md │ │ │ │ │ ├── ORGANIZATIONS_LIST_BASIC.md │ │ │ │ │ ├── ORGANIZATIONS_MEMBER_CONNECTION_LIST.md │ │ │ │ │ ├── ORGANIZATION_DONATION_CONNECTION_LIST.md │ │ │ │ │ ├── ORGANIZATION_EVENT_CONNECTION_LIST.md │ │ │ │ │ ├── ORGANIZATION_FIELDS.md │ │ │ │ │ ├── ORGANIZATION_FILTER_LIST.md │ │ │ │ │ ├── ORGANIZATION_LIST.md │ │ │ │ │ ├── ORGANIZATION_LIST_NO_MEMBERS.md │ │ │ │ │ ├── ORGANIZATION_MEMBER_ADMIN_COUNT.md │ │ │ │ │ ├── RECURRING_EVENTS.md │ │ │ │ │ ├── SIGNIN_QUERY.md │ │ │ │ │ ├── USERS_CONNECTION_LIST.md │ │ │ │ │ ├── USER_DETAILS.md │ │ │ │ │ ├── USER_JOINED_ORGANIZATIONS_NO_MEMBERS.md │ │ │ │ │ ├── USER_JOINED_ORGANIZATIONS_PG.md │ │ │ │ │ ├── USER_LIST.md │ │ │ │ │ ├── USER_LIST_FOR_TABLE.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 │ │ ├── OrgContriCards │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── OrgContribution │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── OrgPeopleListCard │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── OtherSettings │ │ │ └── variables │ │ │ │ └── default.md │ │ ├── PledgeModal │ │ │ ├── README-1.md │ │ │ ├── interfaces │ │ │ │ ├── InterfacePledgeModal-1.md │ │ │ │ └── InterfacePledgeModal.md │ │ │ └── variables │ │ │ │ ├── default-1.md │ │ │ │ └── default.md │ │ ├── Register │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── Requests │ │ │ ├── README-1.md │ │ │ └── functions │ │ │ │ ├── default-1.md │ │ │ │ └── default.md │ │ ├── UserProfile │ │ │ └── variables │ │ │ │ └── default.md │ │ ├── UserUpdate │ │ │ └── variables │ │ │ │ └── default.md │ │ ├── Volunteers │ │ │ └── functions │ │ │ │ └── default.md │ │ ├── components │ │ │ ├── AddPeopleToTag │ │ │ │ ├── AddPeopleToTag │ │ │ │ │ └── variables │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── initialActiveData.md │ │ │ │ │ │ ├── initialArchivedData.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 │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── Delete │ │ │ │ │ └── AgendaItemsDeleteModal │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── Preview │ │ │ │ │ └── AgendaItemsPreviewModal │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ └── Update │ │ │ │ │ └── AgendaItemsUpdateModal │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── Avatar │ │ │ │ └── Avatar │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── ChangeLanguageDropdown │ │ │ │ └── ChangeLanguageDropDown │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── CheckIn │ │ │ │ ├── CheckInMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── checkInMutationSuccess.md │ │ │ │ │ │ ├── checkInMutationSuccessRecurring.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 │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ └── Yearly │ │ │ │ │ └── YearlyEventCalender │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── EventDashboardScreen │ │ │ │ ├── EventDashboardScreen │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── EventDashboardScreenMocks │ │ │ │ │ └── variables │ │ │ │ │ └── MOCKS.md │ │ │ ├── EventListCard │ │ │ │ ├── EventListCard │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── EventListCardProps │ │ │ │ │ └── variables │ │ │ │ │ │ └── props.md │ │ │ │ └── Modal │ │ │ │ │ ├── Delete │ │ │ │ │ └── EventListCardDeleteModal │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── EventListCardMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ └── MOCKS.md │ │ │ │ │ ├── EventListCardModals │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── Preview │ │ │ │ │ └── EventListCardPreviewModal │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ │ └── updateLogic │ │ │ │ │ └── functions │ │ │ │ │ └── useUpdateEventHandler.md │ │ │ ├── EventManagement │ │ │ │ ├── Dashboard │ │ │ │ │ ├── EventDashboard.mocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── MOCKS_INVALID_DATETIME.md │ │ │ │ │ │ │ ├── MOCKS_MISSING_DATA.md │ │ │ │ │ │ │ ├── MOCKS_NO_EVENT.md │ │ │ │ │ │ │ ├── MOCKS_NO_LOCATION.md │ │ │ │ │ │ │ ├── MOCKS_WITHOUT_TIME.md │ │ │ │ │ │ │ └── MOCKS_WITH_TIME.md │ │ │ │ │ └── EventDashboard │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── EventActionItems │ │ │ │ │ └── EventActionItems │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── EventAgendaItems │ │ │ │ │ ├── EventAgendaItems │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── EventAgendaItemsMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_CATEGORY_ERROR.md │ │ │ │ │ │ ├── MOCKS_EMPTY_AGENDA_ITEMS.md │ │ │ │ │ │ ├── MOCKS_ERROR_QUERY.md │ │ │ │ │ │ └── MOCKS_MUTATION_ERROR.md │ │ │ │ ├── EventAttendance │ │ │ │ │ ├── Attendance │ │ │ │ │ │ └── EventAttendance │ │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── AttendanceList │ │ │ │ │ │ └── AttendedEventList │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── EventAttendanceMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── MOCKDETAIL.md │ │ │ │ │ │ │ ├── MOCKEVENT.md │ │ │ │ │ │ │ └── MOCKS.md │ │ │ │ │ └── Statistics │ │ │ │ │ │ └── EventStatistics │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── AttendanceStatisticsModal.md │ │ │ │ └── EventRegistrant │ │ │ │ │ ├── EventRegistrants │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ └── Registrations.mocks │ │ │ │ │ └── variables │ │ │ │ │ ├── COMBINED_MOCKS.md │ │ │ │ │ ├── EMPTY_EVENT_CHECKINS_MOCK.md │ │ │ │ │ ├── EMPTY_REGISTRANTS_MOCK.md │ │ │ │ │ ├── EMPTY_STATE_MOCKS.md │ │ │ │ │ ├── ERROR_DELETION_MOCKS.md │ │ │ │ │ ├── EVENT_CHECKINS_MOCK.md │ │ │ │ │ ├── EVENT_DETAILS_MOCK.md │ │ │ │ │ ├── MISSING_DATE_MOCKS.md │ │ │ │ │ ├── MISSING_NAME_MOCKS.md │ │ │ │ │ ├── RECURRING_EVENT_DETAILS_MOCK.md │ │ │ │ │ ├── RECURRING_EVENT_MOCKS.md │ │ │ │ │ ├── RECURRING_EVENT_REGISTRANTS_MOCK.md │ │ │ │ │ ├── REGISTRANTS_ERROR_USER_MOCK.md │ │ │ │ │ ├── REGISTRANTS_MISSING_DATE_MOCK.md │ │ │ │ │ ├── REGISTRANTS_MISSING_NAME_MOCK.md │ │ │ │ │ ├── REGISTRANTS_MOCK.md │ │ │ │ │ ├── REMOVE_ATTENDEE_ERROR_MOCK.md │ │ │ │ │ └── REMOVE_ATTENDEE_SUCCESS_MOCK.md │ │ │ ├── EventRegistrantsModal │ │ │ │ ├── EventRegistrantsWrapper │ │ │ │ │ └── functions │ │ │ │ │ │ └── EventRegistrantsWrapper.md │ │ │ │ └── Modal │ │ │ │ │ ├── AddOnSpot │ │ │ │ │ └── AddOnSpotAttendee │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── EventRegistrantsModal │ │ │ │ │ └── functions │ │ │ │ │ │ └── EventRegistrantsModal.md │ │ │ │ │ └── InviteByEmail │ │ │ │ │ └── InviteByEmailModal │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── EventStats │ │ │ │ ├── EventStatsMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── diverseRatingsProps.md │ │ │ │ │ │ ├── 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 │ │ │ │ │ └── IIconComponent.md │ │ │ ├── InfiniteScrollLoader │ │ │ │ └── InfiniteScrollLoader │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── LeftDrawer │ │ │ │ └── LeftDrawer │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── ILeftDrawerProps.md │ │ │ ├── LeftDrawerOrg │ │ │ │ └── LeftDrawerOrg │ │ │ │ │ ├── functions │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ └── ILeftDrawerProps.md │ │ │ ├── Loader │ │ │ │ └── Loader │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── MemberActivity │ │ │ │ ├── Card │ │ │ │ │ └── EventsAttendedCardItem │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceCardItem.md │ │ │ │ ├── EventsAttendedByMember │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── MemberActivityMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── errorMocks.md │ │ │ │ │ │ ├── mockEventBasicData.md │ │ │ │ │ │ ├── mockEventData.md │ │ │ │ │ │ └── mocks.md │ │ │ │ └── Modal │ │ │ │ │ ├── CustomCell │ │ │ │ │ └── customTableCell │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── CustomTableCell.md │ │ │ │ │ └── EventsAttendedMemberModal │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── MemberRequestCard │ │ │ │ ├── MemberRequestCard │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── MemberRequestMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ ├── MOCKS2.md │ │ │ │ │ └── MOCKS3.md │ │ │ ├── NotFound │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── NotificationIcon │ │ │ │ └── NotificationIcon │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrgAdminListCard │ │ │ │ └── OrgAdminListCard │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrgDelete │ │ │ │ └── OrgDelete │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrgListCard │ │ │ │ ├── OrgListCard │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ └── interfaces │ │ │ │ │ │ └── InterfaceOrgListCardPropsPG.md │ │ │ │ ├── TruncatedText │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ └── useDebounce │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrgPostCard │ │ │ │ ├── DeleteModal │ │ │ │ │ └── DeletePostModal │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ └── OrgPostCard │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrgSettings │ │ │ │ ├── ActionItemCategories │ │ │ │ │ ├── Modal │ │ │ │ │ │ ├── ActionItemCategoryModal │ │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ │ └── IActionItemCategoryModal.md │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── ActionItemCategoryViewModal │ │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ └── ICategoryViewModalProps.md │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── OrgActionItemCategories │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── OrgActionItemCategoryMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_EMPTY.md │ │ │ │ │ │ └── MOCKS_ERROR.md │ │ │ │ ├── AgendaItemCategories │ │ │ │ │ ├── Create │ │ │ │ │ │ └── AgendaCategoryCreateModal │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── Delete │ │ │ │ │ │ └── AgendaCategoryDeleteModal │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── OrganizationAgendaCategory │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── OrganizationAgendaCategoryErrorMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md │ │ │ │ │ │ │ └── MOCKS_ERROR_MUTATION.md │ │ │ │ │ ├── OrganizationAgendaCategoryMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── MOCKS.md │ │ │ │ │ ├── Preview │ │ │ │ │ │ └── AgendaCategoryPreviewModal │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── Update │ │ │ │ │ │ └── AgendaCategoryUpdateModal │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ └── General │ │ │ │ │ ├── DeleteOrg │ │ │ │ │ └── DeleteOrg │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── GeneralSettings │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ │ └── OrgUpdate │ │ │ │ │ └── OrgUpdate │ │ │ │ │ └── functions │ │ │ │ │ └── default.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 │ │ │ ├── RequestsTableItem │ │ │ │ ├── RequestsTableItem │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── RequestsTableItemMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ └── 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 │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── TagNodeMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS1.md │ │ │ │ │ │ └── MOCKS_ERROR_SUBTAGS_QUERY1.md │ │ │ │ ├── TagActions │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── InterfaceTagActionsProps.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.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 │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── UserListCard │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── UserPasswordUpdate │ │ │ │ └── UserPasswordUpdateMocks │ │ │ │ │ └── variables │ │ │ │ │ └── MOCKS.md │ │ │ ├── UserPortal │ │ │ │ ├── ChatRoom │ │ │ │ │ └── ChatRoom │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── MessageImage.md │ │ │ │ ├── CommentCard │ │ │ │ │ └── CommentCard │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── ContactCard │ │ │ │ │ └── ContactCard │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── CreateDirectChat │ │ │ │ │ └── functions │ │ │ │ │ │ ├── default.md │ │ │ │ │ │ └── handleCreateDirectChat.md │ │ │ │ ├── CreateGroupChat │ │ │ │ │ └── CreateGroupChat │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── DonationCard │ │ │ │ │ └── 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 │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── EventsAttendedByUser.md │ │ │ │ │ └── UserAddressFields │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── 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 │ │ │ │ ├── AsyncComponent │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ │ ├── I18nextProviderMock │ │ │ │ └── functions │ │ │ │ │ └── I18nextProvider.md │ │ │ │ ├── MockBrowserRouter │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ │ ├── TestErrorBoundary │ │ │ │ └── classes │ │ │ │ │ └── TestErrorBoundary.md │ │ │ │ └── TestWrapper │ │ │ │ └── functions │ │ │ │ └── TestWrapper.md │ │ ├── constants │ │ │ └── variables │ │ │ │ └── socialMediaLinks.md │ │ ├── plugin │ │ │ ├── graphql-service │ │ │ │ ├── classes │ │ │ │ │ └── PluginGraphQLService.md │ │ │ │ ├── functions │ │ │ │ │ ├── useCreatePlugin.md │ │ │ │ │ ├── useDeletePlugin.md │ │ │ │ │ ├── useGetAllPlugins.md │ │ │ │ │ ├── useInstallPlugin.md │ │ │ │ │ └── useUpdatePlugin.md │ │ │ │ └── interfaces │ │ │ │ │ ├── CreatePluginInput.md │ │ │ │ │ ├── DeletePluginInput.md │ │ │ │ │ ├── IPlugin.md │ │ │ │ │ ├── InstallPluginInput.md │ │ │ │ │ └── UpdatePluginInput.md │ │ │ ├── hooks │ │ │ │ └── functions │ │ │ │ │ ├── useLoadedPlugins.md │ │ │ │ │ ├── usePluginDrawerItems.md │ │ │ │ │ ├── usePluginInjectors.md │ │ │ │ │ └── usePluginRoutes.md │ │ │ ├── manager │ │ │ │ ├── classes │ │ │ │ │ └── PluginManager.md │ │ │ │ └── functions │ │ │ │ │ ├── getPluginManager.md │ │ │ │ │ └── resetPluginManager.md │ │ │ ├── managers │ │ │ │ ├── discovery │ │ │ │ │ └── classes │ │ │ │ │ │ └── DiscoveryManager.md │ │ │ │ ├── event-manager │ │ │ │ │ └── classes │ │ │ │ │ │ └── EventManager.md │ │ │ │ ├── extension-registry │ │ │ │ │ └── classes │ │ │ │ │ │ └── ExtensionRegistryManager.md │ │ │ │ └── lifecycle │ │ │ │ │ └── classes │ │ │ │ │ └── LifecycleManager.md │ │ │ ├── registry │ │ │ │ ├── functions │ │ │ │ │ ├── createErrorComponent.md │ │ │ │ │ ├── createLazyPluginComponent.md │ │ │ │ │ ├── discoverAndRegisterAllPlugins.md │ │ │ │ │ ├── extractComponentNames.md │ │ │ │ │ ├── getPluginComponent.md │ │ │ │ │ ├── getPluginComponents.md │ │ │ │ │ ├── getPluginManifest.md │ │ │ │ │ ├── initializePluginSystem.md │ │ │ │ │ ├── isPluginRegistered.md │ │ │ │ │ └── registerPluginDynamically.md │ │ │ │ └── variables │ │ │ │ │ ├── manifestCache.md │ │ │ │ │ └── pluginRegistry.md │ │ │ ├── services │ │ │ │ ├── AdminPluginFileService │ │ │ │ │ ├── classes │ │ │ │ │ │ └── AdminPluginFileService.md │ │ │ │ │ ├── interfaces │ │ │ │ │ │ ├── InstalledPlugin.md │ │ │ │ │ │ ├── PluginFileValidationResult.md │ │ │ │ │ │ └── PluginInstallationResult.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── adminPluginFileService.md │ │ │ │ └── InternalFileWriter │ │ │ │ │ ├── classes │ │ │ │ │ └── InternalFileWriter.md │ │ │ │ │ ├── interfaces │ │ │ │ │ ├── FileOperationResult.md │ │ │ │ │ └── FileWriteResult.md │ │ │ │ │ └── variables │ │ │ │ │ └── internalFileWriter.md │ │ │ ├── types │ │ │ │ ├── enumerations │ │ │ │ │ ├── ExtensionPointType.md │ │ │ │ │ └── PluginStatus.md │ │ │ │ └── interfaces │ │ │ │ │ ├── IDrawerExtension.md │ │ │ │ │ ├── IExtensionPoints.md │ │ │ │ │ ├── IExtensionRegistry.md │ │ │ │ │ ├── IInjectorExtension.md │ │ │ │ │ ├── IInstalledPlugin.md │ │ │ │ │ ├── ILoadedPlugin.md │ │ │ │ │ ├── IPluginDetails.md │ │ │ │ │ ├── IPluginDrawerItemsProps.md │ │ │ │ │ ├── IPluginInfo.md │ │ │ │ │ ├── IPluginLifecycle.md │ │ │ │ │ ├── IPluginManifest.md │ │ │ │ │ ├── IPluginMeta.md │ │ │ │ │ ├── IPluginModalProps.md │ │ │ │ │ ├── IPluginRouterProps.md │ │ │ │ │ ├── IPluginStoreProps.md │ │ │ │ │ └── IRouteExtension.md │ │ │ ├── utils │ │ │ │ └── functions │ │ │ │ │ ├── filterByPermissions.md │ │ │ │ │ ├── generatePluginId.md │ │ │ │ │ ├── sortDrawerItems.md │ │ │ │ │ └── validatePluginManifest.md │ │ │ ├── variables │ │ │ │ ├── PluginInjector.md │ │ │ │ ├── PluginRouteRenderer.md │ │ │ │ └── PluginRoutes.md │ │ │ └── vite │ │ │ │ └── internalFileWriterPlugin │ │ │ │ ├── functions │ │ │ │ └── createInternalFileWriterPlugin.md │ │ │ │ └── interfaces │ │ │ │ └── InternalFileWriterPluginOptions.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 │ │ │ │ │ │ ├── MOCKS_WITH_FILTER_DATA.md │ │ │ │ │ │ └── UPDATE_ERROR_MOCKS.md │ │ │ │ ├── VolunteerContainer │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── VolunteerGroups │ │ │ │ │ ├── VolunteerGroups │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── deleteModal │ │ │ │ │ │ └── VolunteerGroupDeleteModal │ │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ └── InterfaceDeleteVolunteerGroupModal.md │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── modal │ │ │ │ │ │ ├── VolunteerGroupModal │ │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ │ └── InterfaceVolunteerGroupModal.md │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── VolunteerGroups.mocks │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ │ ├── MOCKS_EMPTY.md │ │ │ │ │ │ │ └── MOCKS_ERROR.md │ │ │ │ │ └── viewModal │ │ │ │ │ │ └── VolunteerGroupViewModal │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── InterfaceVolunteerGroupViewModal.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ └── Volunteers │ │ │ │ │ ├── Volunteers.mocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_EMPTY.md │ │ │ │ │ │ └── MOCKS_ERROR.md │ │ │ │ │ ├── createModal │ │ │ │ │ └── VolunteerCreateModal │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── InterfaceVolunteerCreateModal.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── deleteModal │ │ │ │ │ └── VolunteerDeleteModal │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── InterfaceDeleteVolunteerModal.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ │ └── viewModal │ │ │ │ │ └── VolunteerViewModal │ │ │ │ │ ├── interfaces │ │ │ │ │ └── InterfaceVolunteerViewModal.md │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── ForgotPassword │ │ │ │ └── ForgotPassword │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── FundCampaignPledge │ │ │ │ ├── FundCampaignPledge │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── PledgesMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_DELETE_PLEDGE_ERROR.md │ │ │ │ │ │ ├── MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md │ │ │ │ │ │ ├── PLEDGE_MODAL_ERROR_MOCKS.md │ │ │ │ │ │ └── PLEDGE_MODAL_MOCKS.md │ │ │ │ └── deleteModal │ │ │ │ │ └── PledgeDeleteModal │ │ │ │ │ ├── interfaces │ │ │ │ │ └── InterfaceDeletePledgeModal.md │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── Leaderboard │ │ │ │ ├── Leaderboard.mocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ └── MOCKS.md │ │ │ │ └── Leaderboard │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── ManageTag │ │ │ │ ├── ManageTag │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── ManageTagMockComponents │ │ │ │ │ ├── MockAddPeopleToTag │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── MockTagActions │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── ManageTagMockUtils │ │ │ │ │ └── functions │ │ │ │ │ │ └── buildAssignedUsers.md │ │ │ │ ├── ManageTagMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ └── MOCKS_ERROR_ASSIGNED_MEMBERS.md │ │ │ │ ├── ManageTagNonErrorMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS_ERROR_OBJECT.md │ │ │ │ │ │ ├── MOCKS_INFINITE_SCROLL_PAGINATION.md │ │ │ │ │ │ ├── MOCKS_SUCCESS_REMOVE_USER_TAG.md │ │ │ │ │ │ ├── MOCKS_SUCCESS_UNASSIGN_USER_TAG.md │ │ │ │ │ │ ├── MOCKS_SUCCESS_UPDATE_USER_TAG.md │ │ │ │ │ │ └── MOCKS_WITH_ANCESTOR_TAGS.md │ │ │ │ ├── ManageTagNullFalsyMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS_EMPTY_ASSIGNED_MEMBERS_ARRAY.md │ │ │ │ │ │ ├── MOCKS_EMPTY_EDGES_ARRAY.md │ │ │ │ │ │ ├── MOCKS_EMPTY_PAGE_INFO.md │ │ │ │ │ │ ├── MOCKS_ERROR_REMOVE_USER_TAG.md │ │ │ │ │ │ ├── MOCKS_ERROR_UNASSIGN_USER_TAG.md │ │ │ │ │ │ ├── MOCKS_ERROR_UPDATE_USER_TAG.md │ │ │ │ │ │ ├── MOCKS_NULL_ANCESTOR_TAGS.md │ │ │ │ │ │ ├── MOCKS_NULL_DATA.md │ │ │ │ │ │ ├── MOCKS_NULL_USERS_ASSIGNED_TO.md │ │ │ │ │ │ └── MOCKS_UNDEFINED_DATA.md │ │ │ │ ├── editModal │ │ │ │ │ └── EditUserTagModal │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── InterfaceEditUserTagModalProps.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── removeModal │ │ │ │ │ └── RemoveUserTagModal │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── InterfaceRemoveUserTagModalProps.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ └── unassignModal │ │ │ │ │ └── UnassignUserTagModal │ │ │ │ │ ├── interfaces │ │ │ │ │ └── InterfaceUnassignUserTagModalProps.md │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── MemberDetail │ │ │ │ ├── MemberDetail │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── getLanguageName.md │ │ │ │ │ │ └── prettyDate.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ └── MemberDetailMocks │ │ │ │ │ └── variables │ │ │ │ │ ├── ERROR_MOCK.md │ │ │ │ │ ├── MOCKS1.md │ │ │ │ │ ├── MOCKS2.md │ │ │ │ │ ├── MOCK_FILE.md │ │ │ │ │ └── UPDATE_MOCK.md │ │ │ ├── Notification │ │ │ │ └── Notification │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── OrgList │ │ │ │ ├── OrgList │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── OrgListMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_ADMIN.md │ │ │ │ │ │ ├── MOCKS_EMPTY.md │ │ │ │ │ │ └── MOCKS_WITH_ERROR.md │ │ │ │ └── modal │ │ │ │ │ └── OrganizationModal │ │ │ │ │ ├── interfaces │ │ │ │ │ └── InterfaceOrganizationModalProps.md │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── OrgPost │ │ │ │ ├── OrgPost │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── PinnedPostsStory │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ └── Posts │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── OrgSettings │ │ │ │ ├── OrgSettings.mocks │ │ │ │ │ └── variables │ │ │ │ │ │ └── MOCKS.md │ │ │ │ └── OrgSettings │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrganizationActionItems │ │ │ │ ├── ActionItemDeleteModal │ │ │ │ │ └── ActionItemDeleteModal │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── IItemDeleteModalProps.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── ActionItemModal │ │ │ │ │ └── ActionItemModal │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── ActionItemUpdateModal │ │ │ │ │ └── ActionItemUpdateStatusModal │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── IItemUpdateStatusModalProps.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── ActionItemViewModal │ │ │ │ │ └── ActionItemViewModal │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── IViewModalProps.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ └── OrganizationActionItem.mocks │ │ │ │ │ └── variables │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ ├── MOCKS_ERROR.md │ │ │ │ │ ├── actionItemCategory1.md │ │ │ │ │ ├── actionItemCategory2.md │ │ │ │ │ ├── actionItemCategoryListQuery.md │ │ │ │ │ ├── actionItemListQuery.md │ │ │ │ │ ├── actionItemListQueryError.md │ │ │ │ │ ├── baseActionItem.md │ │ │ │ │ ├── completeActionForInstanceMutation.md │ │ │ │ │ ├── completeActionForInstanceMutationError.md │ │ │ │ │ ├── deleteActionItemForInstanceMutation.md │ │ │ │ │ ├── deleteActionItemForInstanceMutationError.md │ │ │ │ │ ├── deleteActionItemMutation.md │ │ │ │ │ ├── deleteActionItemMutationError.md │ │ │ │ │ ├── itemWithEmptyAssigneeName.md │ │ │ │ │ ├── itemWithUser1.md │ │ │ │ │ ├── itemWithUser2.md │ │ │ │ │ ├── itemWithVolunteerGroup.md │ │ │ │ │ ├── itemWithoutAssignee.md │ │ │ │ │ ├── itemWithoutCategory.md │ │ │ │ │ ├── markActionAsPendingForInstanceMutation.md │ │ │ │ │ ├── markActionAsPendingForInstanceMutationError.md │ │ │ │ │ ├── markActionItemAsPendingMutation.md │ │ │ │ │ ├── markActionItemAsPendingMutationError.md │ │ │ │ │ ├── memberListQuery.md │ │ │ │ │ └── updateActionItemMutation.md │ │ │ ├── OrganizationDashboard │ │ │ │ ├── OrganizationDashboard │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── OrganizationDashboardMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ ├── MIXED_REQUESTS_MOCK.md │ │ │ │ │ │ └── MOCKS.md │ │ │ │ └── components │ │ │ │ │ ├── DashboardStats │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── MembershipRequestsCard │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── RecentPostsCard │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ │ └── UpcomingEventsCard │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── OrganizationEvents │ │ │ │ ├── CreateEventModal │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── CustomRecurrenceModal │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── 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 │ │ │ │ │ ├── interfaces │ │ │ │ │ └── InterfaceCampaignModal.md │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── OrganizationFunds │ │ │ │ ├── OrganizationFunds │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── OrganizationFundsMocks │ │ │ │ │ └── variables │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_ERROR.md │ │ │ │ │ │ └── NO_FUNDS.md │ │ │ │ └── modal │ │ │ │ │ └── FundModal │ │ │ │ │ ├── interfaces │ │ │ │ │ └── InterfaceFundModal.md │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── OrganizationPeople │ │ │ │ ├── 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 │ │ │ ├── OrganizationTransactions │ │ │ │ └── OrganizationTransactions │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── OrganizationVenues │ │ │ │ └── OrganizationVenues │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── PageNotFound │ │ │ │ └── PageNotFound │ │ │ │ │ └── functions │ │ │ │ │ └── default.md │ │ │ ├── PluginStore │ │ │ │ ├── PluginModal │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── PluginStore │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── UploadPluginModal │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── components │ │ │ │ │ ├── PluginCard │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── PluginList │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── UninstallConfirmationModal │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── hooks │ │ │ │ │ ├── useInstallTimer │ │ │ │ │ └── functions │ │ │ │ │ │ └── useInstallTimer.md │ │ │ │ │ ├── usePluginActions │ │ │ │ │ └── functions │ │ │ │ │ │ └── usePluginActions.md │ │ │ │ │ └── usePluginFilters │ │ │ │ │ └── functions │ │ │ │ │ └── usePluginFilters.md │ │ │ ├── Public │ │ │ │ └── Invitation │ │ │ │ │ └── AcceptInvitation │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ ├── MOCKS_WITH_FUND_NO_CAMPAIGNS.md │ │ │ │ │ │ ├── MOCKS_WITH_NO_FUNDS.md │ │ │ │ │ │ ├── MOCKS_WITH_NULL_ORGANIZATION.md │ │ │ │ │ │ ├── MOCKS_WITH_UNDEFINED_CAMPAIGNS.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 │ │ │ │ │ │ └── MOCKS.md │ │ │ │ ├── Posts │ │ │ │ │ ├── PinnedPostCard │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ └── InterfacePinnedPostCardProps.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── Posts │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── POSTS_PER_PAGE.md │ │ │ │ ├── Settings │ │ │ │ │ ├── ProfileHeader │ │ │ │ │ │ └── ProfileHeader │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── ProfileImageSection │ │ │ │ │ │ └── ProfileImageSection │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── Settings │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── SettingsMocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ │ ├── MOCKS1.md │ │ │ │ │ │ │ ├── MOCKS2.md │ │ │ │ │ │ │ └── UPDATE_MOCK.md │ │ │ │ │ ├── SideToggle │ │ │ │ │ │ └── SideToggle │ │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ └── UserDetails │ │ │ │ │ │ └── UserDetails │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── Transactions │ │ │ │ │ └── Transactions │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── UserGlobalScreen │ │ │ │ │ └── UserGlobalScreen │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ ├── UserScreen │ │ │ │ │ └── UserScreen │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ └── Volunteer │ │ │ │ │ ├── Actions │ │ │ │ │ └── Actions.mocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ └── MOCKS.md │ │ │ │ │ ├── Groups │ │ │ │ │ ├── GroupModal │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ └── InterfaceGroupModal.md │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.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 │ │ │ │ │ │ │ ├── GROUP_NON_RECURRING_MOCKS.md │ │ │ │ │ │ │ ├── GROUP_RECURRING_MOCKS.md │ │ │ │ │ │ │ ├── INDIVIDUAL_NON_RECURRING_MOCKS.md │ │ │ │ │ │ │ ├── INDIVIDUAL_RECURRING_MOCKS.md │ │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ │ └── UPDATE_ERROR_MOCKS.md │ │ │ │ │ └── Invitations │ │ │ │ │ │ └── functions │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── UpcomingEvents │ │ │ │ │ ├── RecurringEventVolunteerModal │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ └── default.md │ │ │ │ │ ├── UpcomingEvents.mocks │ │ │ │ │ │ └── variables │ │ │ │ │ │ │ ├── CREATE_ERROR_MOCKS.md │ │ │ │ │ │ │ ├── EMPTY_MOCKS.md │ │ │ │ │ │ │ ├── ERROR_MOCKS.md │ │ │ │ │ │ │ ├── MEMBERSHIP_LOOKUP_MOCKS.md │ │ │ │ │ │ │ ├── MEMBERSHIP_STATUS_MOCKS.md │ │ │ │ │ │ │ ├── MOCKS.md │ │ │ │ │ │ │ ├── RECURRING_MODAL_MOCKS.md │ │ │ │ │ │ │ ├── baseEvent.md │ │ │ │ │ │ │ └── baseRecurringEvent.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 │ │ │ ├── backupEnvFile │ │ │ │ └── backupEnvFile │ │ │ │ │ └── functions │ │ │ │ │ └── backupEnvFile.md │ │ │ ├── checkConnection │ │ │ │ └── checkConnection │ │ │ │ │ └── functions │ │ │ │ │ └── checkConnection.md │ │ │ ├── checkEnvFile │ │ │ │ └── checkEnvFile │ │ │ │ │ └── functions │ │ │ │ │ ├── checkEnvFile.md │ │ │ │ │ └── modifyEnvFile.md │ │ │ ├── setup │ │ │ │ └── functions │ │ │ │ │ ├── askAndSetRecaptcha.md │ │ │ │ │ └── main.md │ │ │ ├── updateEnvFile │ │ │ │ └── updateEnvFile │ │ │ │ │ └── functions │ │ │ │ │ └── updateEnvFile.md │ │ │ └── validateRecaptcha │ │ │ │ └── validateRecaptcha │ │ │ │ └── functions │ │ │ │ └── validateRecaptcha.md │ │ ├── state │ │ │ ├── action-creators │ │ │ │ └── functions │ │ │ │ │ └── updateTargets.md │ │ │ ├── helpers │ │ │ │ └── Action │ │ │ │ │ └── interfaces │ │ │ │ │ └── InterfaceAction.md │ │ │ ├── hooks │ │ │ │ └── variables │ │ │ │ │ └── useAppDispatch.md │ │ │ ├── reducers │ │ │ │ ├── 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 │ │ │ │ └── variables │ │ │ │ │ └── reducers.md │ │ │ └── store │ │ │ │ ├── type-aliases │ │ │ │ └── AppDispatch.md │ │ │ │ └── variables │ │ │ │ └── store.md │ │ ├── subComponents │ │ │ ├── SearchBar │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ ├── SearchingButton │ │ │ │ ├── namespaces │ │ │ │ │ └── default │ │ │ │ │ │ └── variables │ │ │ │ │ │ └── propTypes.md │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ └── SortingButton │ │ │ │ ├── namespaces │ │ │ │ └── default │ │ │ │ │ └── variables │ │ │ │ │ └── propTypes.md │ │ │ │ └── variables │ │ │ │ └── default.md │ │ ├── test-utils │ │ │ └── mocks │ │ │ │ └── react-bootstrap │ │ │ │ ├── Dropdown │ │ │ │ └── variables │ │ │ │ │ └── Dropdown.md │ │ │ │ ├── components │ │ │ │ ├── DropdownBase │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── DivProps.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── DropdownItem │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── BtnProps.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ ├── DropdownMenu │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ └── DivProps.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── default.md │ │ │ │ └── DropdownToggle │ │ │ │ │ ├── type-aliases │ │ │ │ │ └── BtnProps.md │ │ │ │ │ └── variables │ │ │ │ │ └── default.md │ │ │ │ └── types │ │ │ │ ├── interfaces │ │ │ │ └── InterfaceDropdown.md │ │ │ │ └── type-aliases │ │ │ │ ├── BtnProps.md │ │ │ │ └── DivProps.md │ │ ├── types │ │ │ ├── ActionItems │ │ │ │ └── interface │ │ │ │ │ └── interfaces │ │ │ │ │ ├── IActionItemCategoryInfo.md │ │ │ │ │ ├── IActionItemCategoryList.md │ │ │ │ │ ├── IActionItemInfo.md │ │ │ │ │ ├── IActionItemList.md │ │ │ │ │ ├── ICreateActionItemInput.md │ │ │ │ │ ├── ICreateActionItemVariables.md │ │ │ │ │ ├── IDeleteActionItemInput.md │ │ │ │ │ ├── IEventVolunteerGroup.md │ │ │ │ │ ├── IFormStateType.md │ │ │ │ │ ├── IItemModalProps.md │ │ │ │ │ ├── IMarkActionItemAsPendingInput.md │ │ │ │ │ ├── IUpdateActionForInstanceInput.md │ │ │ │ │ ├── IUpdateActionItemForInstanceInput.md │ │ │ │ │ ├── IUpdateActionItemForInstanceVariables.md │ │ │ │ │ └── IUpdateActionItemInput.md │ │ │ ├── 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-aliases │ │ │ │ │ │ └── NewChatType.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 │ │ │ │ └── type │ │ │ │ │ └── type-aliases │ │ │ │ │ ├── Comment.md │ │ │ │ │ └── CommentInput.md │ │ │ ├── Contribution │ │ │ │ └── interface │ │ │ │ │ └── interfaces │ │ │ │ │ ├── InterfaceContriStatsProps.md │ │ │ │ │ └── InterfaceOrgContriCardsProps.md │ │ │ ├── Donation │ │ │ │ └── interface │ │ │ │ │ └── interfaces │ │ │ │ │ ├── InterfaceDonation.md │ │ │ │ │ └── InterfaceDonationCardProps.md │ │ │ ├── DropDown │ │ │ │ └── interface │ │ │ │ │ └── interfaces │ │ │ │ │ ├── InterfaceCollapsibleDropdown.md │ │ │ │ │ └── InterfaceDropDownProps.md │ │ │ ├── Event │ │ │ │ ├── interface │ │ │ │ │ ├── enumerations │ │ │ │ │ │ └── UserRole.md │ │ │ │ │ ├── interfaces │ │ │ │ │ │ ├── IAttendanceStatisticsModalProps.md │ │ │ │ │ │ ├── ICalendarProps.md │ │ │ │ │ │ ├── IDeleteEventModalProps.md │ │ │ │ │ │ ├── IEvent.md │ │ │ │ │ │ ├── IEventEdge.md │ │ │ │ │ │ ├── IEventHeaderProps.md │ │ │ │ │ │ ├── IEventsAttendedMemberModalProps.md │ │ │ │ │ │ ├── IMember.md │ │ │ │ │ │ ├── IOrgList.md │ │ │ │ │ │ ├── IPreviewEventModalProps.md │ │ │ │ │ │ ├── IStatsModal.md │ │ │ │ │ │ └── IUpdateEventModalProps.md │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ ├── InterfaceAttendanceStatisticsModalProps.md │ │ │ │ │ │ ├── InterfaceCalendarProps.md │ │ │ │ │ │ ├── InterfaceDeleteEventModalProps.md │ │ │ │ │ │ ├── InterfaceEvent.md │ │ │ │ │ │ ├── InterfaceEventEdge.md │ │ │ │ │ │ ├── InterfaceEventHeaderProps.md │ │ │ │ │ │ ├── InterfaceEventsAttendedMemberModalProps.md │ │ │ │ │ │ ├── InterfaceIOrgList.md │ │ │ │ │ │ ├── InterfaceMember.md │ │ │ │ │ │ ├── InterfacePreviewEventModalProps.md │ │ │ │ │ │ ├── InterfaceStatsModal.md │ │ │ │ │ │ └── InterfaceUpdateEventModalProps.md │ │ │ │ │ └── variables │ │ │ │ │ │ └── FilterPeriod.md │ │ │ │ ├── type │ │ │ │ │ ├── type-aliases │ │ │ │ │ │ ├── Event.md │ │ │ │ │ │ ├── EventAttendeeInput.md │ │ │ │ │ │ ├── EventInput.md │ │ │ │ │ │ ├── EventOrderByInput.md │ │ │ │ │ │ ├── EventVolunteer.md │ │ │ │ │ │ ├── EventVolunteerInput.md │ │ │ │ │ │ ├── EventVolunteerResponse.md │ │ │ │ │ │ ├── EventWhereInput.md │ │ │ │ │ │ ├── Feedback.md │ │ │ │ │ │ ├── FeedbackInput.md │ │ │ │ │ │ ├── UpdateEventVolunteerInput.md │ │ │ │ │ │ └── User.md │ │ │ │ │ └── variables │ │ │ │ │ │ ├── EventOrderByInputEnum.md │ │ │ │ │ │ └── EventVolunteerResponseEnum.md │ │ │ │ └── utils │ │ │ │ │ ├── interfaces │ │ │ │ │ └── InterfaceHoliday.md │ │ │ │ │ └── variables │ │ │ │ │ ├── holidays.md │ │ │ │ │ ├── months.md │ │ │ │ │ └── weekdays.md │ │ │ ├── Member │ │ │ │ └── interface │ │ │ │ │ └── interfaces │ │ │ │ │ ├── InterfaceMemberInfo.md │ │ │ │ │ ├── InterfaceMemberRequestCardProps.md │ │ │ │ │ ├── InterfaceMembersList.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 │ │ │ │ │ └── PostOrderByInputEnum.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 │ │ │ ├── Volunteer │ │ │ │ └── interface │ │ │ │ │ └── interfaces │ │ │ │ │ ├── InterfaceCreateVolunteerGroupData.md │ │ │ │ │ ├── InterfaceEventEdge.md │ │ │ │ │ ├── InterfaceEventVolunteerInfo.md │ │ │ │ │ ├── InterfaceMappedEvent.md │ │ │ │ │ ├── InterfaceVolunteerData.md │ │ │ │ │ ├── InterfaceVolunteerGroupData.md │ │ │ │ │ ├── InterfaceVolunteerMembership.md │ │ │ │ │ └── InterfaceVolunteerStatus.md │ │ │ ├── actionItem │ │ │ │ └── type-aliases │ │ │ │ │ ├── ActionItem.md │ │ │ │ │ ├── ActionItemCategory.md │ │ │ │ │ ├── CreateActionItemInput.md │ │ │ │ │ └── UpdateActionItemInput.md │ │ │ ├── address │ │ │ │ └── type-aliases │ │ │ │ │ ├── Address.md │ │ │ │ │ └── AddressInput.md │ │ │ ├── jsx │ │ │ │ └── namespaces │ │ │ │ │ └── JSX │ │ │ │ │ └── type-aliases │ │ │ │ │ ├── Element.md │ │ │ │ │ ├── ElementAttributesProperty.md │ │ │ │ │ ├── ElementChildrenAttribute.md │ │ │ │ │ ├── ElementClass.md │ │ │ │ │ ├── IntrinsicAttributes.md │ │ │ │ │ ├── IntrinsicClassAttributes.md │ │ │ │ │ ├── IntrinsicElements.md │ │ │ │ │ └── LibraryManagedAttributes.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 │ │ │ ├── adminPluginInstaller │ │ │ ├── functions │ │ │ │ ├── getInstalledAdminPlugins.md │ │ │ │ ├── installAdminPluginFromZip.md │ │ │ │ ├── removeAdminPlugin.md │ │ │ │ ├── validateAdminPluginStructure.md │ │ │ │ └── validateAdminPluginZip.md │ │ │ └── interfaces │ │ │ │ ├── AdminPluginInstallationOptions.md │ │ │ │ ├── AdminPluginInstallationResult.md │ │ │ │ ├── AdminPluginManifest.md │ │ │ │ └── AdminPluginZipStructure.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 │ │ │ ├── getRefreshToken │ │ │ └── functions │ │ │ │ └── refreshToken.md │ │ │ ├── interfaces │ │ │ ├── enumerations │ │ │ │ └── Iso3166Alpha2CountryCode.md │ │ │ ├── interfaces │ │ │ │ ├── IEvent.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 │ │ │ │ ├── InterfaceComment.md │ │ │ │ ├── InterfaceCommentEdge.md │ │ │ │ ├── InterfaceCreateFund.md │ │ │ │ ├── InterfaceCreatePledge.md │ │ │ │ ├── InterfaceCreateVolunteerGroup.md │ │ │ │ ├── InterfaceCurrentUserTypePG.md │ │ │ │ ├── InterfaceCustomFieldData.md │ │ │ │ ├── InterfaceEventAttachmentPg.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 │ │ │ │ ├── InterfaceUserInfoPG.md │ │ │ │ ├── InterfaceUserPg.md │ │ │ │ ├── InterfaceUserType.md │ │ │ │ ├── InterfaceUserTypePG.md │ │ │ │ ├── InterfaceVenuePg.md │ │ │ │ ├── InterfaceVolunteerGroupInfo.md │ │ │ │ ├── InterfaceVolunteerMembership.md │ │ │ │ ├── InterfaceVolunteerRank.md │ │ │ │ └── VoteType.md │ │ │ └── type-aliases │ │ │ │ └── VoteState.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 │ │ │ │ │ ├── dayNames.md │ │ │ │ │ ├── daysOptions.md │ │ │ │ │ ├── endsAfter.md │ │ │ │ │ ├── endsNever.md │ │ │ │ │ ├── endsOn.md │ │ │ │ │ ├── frequencies.md │ │ │ │ │ ├── monthNames.md │ │ │ │ │ └── recurrenceEndOptions.md │ │ │ ├── recurrenceTypes │ │ │ │ ├── enumerations │ │ │ │ │ ├── Frequency.md │ │ │ │ │ ├── RecurrenceEndOption.md │ │ │ │ │ └── WeekDays.md │ │ │ │ ├── interfaces │ │ │ │ │ └── InterfaceRecurrenceRule.md │ │ │ │ └── type-aliases │ │ │ │ │ └── RecurrenceEndOptionType.md │ │ │ └── recurrenceUtilityFunctions │ │ │ │ └── functions │ │ │ │ ├── areRecurrenceRulesEqual.md │ │ │ │ ├── createDefaultRecurrenceRule.md │ │ │ │ ├── formatRecurrenceForApi.md │ │ │ │ ├── getEndTypeFromRecurrence.md │ │ │ │ ├── getOrdinalSuffix.md │ │ │ │ ├── getRecurrenceRuleText.md │ │ │ │ └── validateRecurrenceInput.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 │ │ ├── e2e-testing.md │ │ ├── introduction.md │ │ ├── minio.md │ │ ├── operation.md │ │ ├── plugin-graphql.md │ │ ├── plugin.md │ │ ├── reusable-components.md │ │ ├── testing.md │ │ └── troubleshooting.md │ │ ├── getting-started │ │ ├── configuration.md │ │ ├── installation.md │ │ ├── login.md │ │ ├── operation.md │ │ └── webserver.md │ │ ├── introduction.md │ │ └── plugins │ │ ├── implementing-plugins-example.md │ │ ├── implementing-plugins.md │ │ └── plugin-architecture.md ├── docusaurus.config.ts ├── package.json ├── pnpm-lock.yaml ├── sidebars.ts ├── src │ ├── components │ │ └── layout │ │ │ └── HeaderHero.tsx │ ├── css │ │ └── custom.css │ ├── pages │ │ └── index.tsx │ └── utils │ │ ├── ActionButton.tsx │ │ └── HomeCallToAction.tsx └── static │ ├── .nojekyll │ ├── CNAME │ └── img │ ├── docs │ └── plugin │ │ ├── plugin-store-navbar.PNG │ │ ├── plugin-types.PNG │ │ ├── store.PNG │ │ └── talawa.PNG │ ├── icons │ ├── facebook.svg │ ├── favicon_palisadoes.ico │ ├── github-dark.svg │ ├── github.svg │ ├── instagram.svg │ ├── logo.png │ ├── opportunities.svg │ ├── slack.svg │ ├── source.svg │ ├── team.svg │ ├── twitter.svg │ ├── youtube-white.svg │ └── youtube.svg │ └── markdown │ ├── installation │ ├── REACT_SITE_KEY.webp │ ├── Register.png │ └── jest-preview.webp │ ├── minio │ └── architecture.png │ └── misc │ └── logo.png ├── eslint.config.js ├── index.html ├── knip.deps.json ├── knip.json ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.ico ├── favicon_palisadoes.ico ├── images │ ├── REACT_SITE_KEY.webp │ ├── jest-preview.webp │ ├── logo512.png │ └── svg │ │ ├── angleDown.svg │ │ ├── angleRight.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right.svg │ │ ├── attendees.svg │ │ ├── feedback.svg │ │ ├── options-outline.svg │ │ ├── organization.svg │ │ ├── profiledefault.svg │ │ └── up-down.svg ├── locales │ ├── en │ │ ├── common.json │ │ ├── errors.json │ │ └── translation.json │ ├── es │ │ ├── common.json │ │ ├── errors.json │ │ └── translation.json │ ├── fr │ │ ├── common.json │ │ ├── errors.json │ │ └── translation.json │ ├── hi │ │ ├── common.json │ │ ├── errors.json │ │ └── translation.json │ └── zh │ │ ├── common.json │ │ ├── errors.json │ │ └── translation.json ├── manifest.json ├── markdown │ └── images │ │ ├── install1.png │ │ └── install2.png └── robots.txt ├── pyproject.toml ├── schema.graphql ├── scripts ├── __mocks__ │ ├── @dicebear │ │ ├── collection.ts │ │ └── core.ts │ ├── @pdfme │ │ ├── generator.spec.ts │ │ └── generator.ts │ └── fileMock.js ├── custom-test-env.js ├── delete-readmes.js ├── docs │ ├── fix-readme-links.js │ └── fix-repo-url.js ├── githooks │ ├── check-localstorage-usage.ts │ ├── check_pom.js │ └── update-toc.js ├── run-shard.js └── start-server.js ├── src ├── App.spec.tsx ├── App.tsx ├── Constant │ ├── constant.spec.ts │ ├── constant.ts │ └── fileUpload.ts ├── GraphQl │ ├── Mutations │ │ ├── ActionItemCategoryMutations.ts │ │ ├── ActionItemMutations.ts │ │ ├── AdvertisementMutations.ts │ │ ├── AgendaCategoryMutations.ts │ │ ├── AgendaItemMutations.ts │ │ ├── CampaignMutation.ts │ │ ├── CommentMutations.ts │ │ ├── EventAttendeeMutations.ts │ │ ├── EventMutations.ts │ │ ├── EventVolunteerMutation.ts │ │ ├── FundMutation.ts │ │ ├── OrganizationMutations.ts │ │ ├── PledgeMutation.ts │ │ ├── PluginMutations.ts │ │ ├── TagMutations.ts │ │ ├── VenueMutations.ts │ │ └── mutations.ts │ └── Queries │ │ ├── ActionItemCategoryQueries.ts │ │ ├── ActionItemQueries.ts │ │ ├── AdvertisementQueries.ts │ │ ├── AgendaCategoryQueries.ts │ │ ├── AgendaItemQueries.ts │ │ ├── CommentQueries.ts │ │ ├── EventVolunteerQueries.ts │ │ ├── NotificationQueries.ts │ │ ├── OrganizationQueries.ts │ │ ├── PlugInQueries.ts │ │ ├── Queries.ts │ │ ├── VenueQueries.spec.ts │ │ ├── fundQueries.ts │ │ └── userTagQueries.ts ├── assets │ ├── css │ │ ├── app.css │ │ ├── app.css.map │ │ └── scrollStyles.css │ ├── images │ │ ├── blank.png │ │ ├── bronze.png │ │ ├── defaultImg.png │ │ ├── gold.png │ │ ├── palisadoes_logo.png │ │ ├── silver.png │ │ ├── talawa-logo-600x600.png │ │ ├── talawa-logo-dark-200x200.png │ │ └── talawa-logo-lite-200x200.png │ ├── scss │ │ ├── _colors.scss │ │ ├── _general.scss │ │ ├── _talawa.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── app.scss │ │ ├── components │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _list-group.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _offcanvas.scss │ │ │ ├── _pagination.scss │ │ │ ├── _placeholder.scss │ │ │ ├── _progress.scss │ │ │ └── _spinners.scss │ │ ├── content │ │ │ ├── _table.scss │ │ │ └── _typography.scss │ │ └── forms │ │ │ ├── _check-radios.scss │ │ │ ├── _floating-label.scss │ │ │ ├── _form-control.scss │ │ │ ├── _input-group.scss │ │ │ ├── _range.scss │ │ │ ├── _select.scss │ │ │ └── _validation.scss │ └── svgs │ │ ├── Attendance.svg │ │ ├── actionItem.svg │ │ ├── admin.svg │ │ ├── agenda-category-icon.svg │ │ ├── agenda-items.svg │ │ ├── angleRight.svg │ │ ├── article.svg │ │ ├── blockUser.svg │ │ ├── blockedUser.svg │ │ ├── cardItemDate.svg │ │ ├── cardItemEvent.svg │ │ ├── cardItemLocation.svg │ │ ├── chat.svg │ │ ├── checkInRegistrants.svg │ │ ├── dashboard.svg │ │ ├── date.svg │ │ ├── event.svg │ │ ├── events.svg │ │ ├── flask.svg │ │ ├── funds.svg │ │ ├── key.svg │ │ ├── listEventRegistrants.svg │ │ ├── location.svg │ │ ├── logout.svg │ │ ├── media.svg │ │ ├── newChat.svg │ │ ├── organizations.svg │ │ ├── palisadoes.svg │ │ ├── people.svg │ │ ├── plugins.svg │ │ ├── post.svg │ │ ├── posts.svg │ │ ├── requests.svg │ │ ├── roles.svg │ │ ├── settings.svg │ │ ├── social-icons │ │ ├── Facebook-Logo.svg │ │ ├── Github-Logo.svg │ │ ├── Instagram-Logo.svg │ │ ├── Linkedin-Logo.svg │ │ ├── Reddit-Logo.svg │ │ ├── Slack-Logo.svg │ │ ├── X-Logo.svg │ │ ├── Youtube-Logo.svg │ │ └── index.tsx │ │ ├── tag.svg │ │ ├── tags.svg │ │ ├── talawa.svg │ │ ├── user.svg │ │ ├── userEvent.svg │ │ ├── users.svg │ │ └── venues.svg ├── 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.module.css │ │ ├── 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.spec.tsx │ │ └── ContriStats.tsx │ ├── CurrentHourIndicator │ │ ├── CurrentHourIndicator.spec.tsx │ │ └── 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.spec.tsx │ │ │ └── EventListCardDeleteModal.tsx │ │ │ ├── EventListCardMocks.ts │ │ │ ├── EventListCardModals.spec.tsx │ │ │ ├── EventListCardModals.tsx │ │ │ ├── Preview │ │ │ ├── EventListCardPreviewModal.spec.tsx │ │ │ └── EventListCardPreviewModal.tsx │ │ │ └── updateLogic.ts │ ├── EventManagement │ │ ├── Dashboard │ │ │ ├── EventDashboard.mocks.ts │ │ │ ├── EventDashboard.spec.tsx │ │ │ └── EventDashboard.tsx │ │ ├── EventActionItems │ │ │ ├── EventActionItems.spec.tsx │ │ │ └── EventActionItems.tsx │ │ ├── EventAgendaItems │ │ │ ├── EventAgendaItems.spec.tsx │ │ │ ├── EventAgendaItems.tsx │ │ │ └── EventAgendaItemsMocks.ts │ │ ├── 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 │ │ │ └── Registrations.mocks.ts │ ├── EventRegistrantsModal │ │ ├── EventRegistrantsWrapper.spec.tsx │ │ ├── EventRegistrantsWrapper.tsx │ │ └── Modal │ │ │ ├── AddOnSpot │ │ │ ├── AddOnSpotAttendee.spec.tsx │ │ │ └── AddOnSpotAttendee.tsx │ │ │ ├── EventRegistrantsModal.spec.tsx │ │ │ ├── EventRegistrantsModal.tsx │ │ │ └── InviteByEmail │ │ │ ├── InviteByEmailModal.spec.tsx │ │ │ └── InviteByEmailModal.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.spec.tsx │ │ └── InfiniteScrollLoader.tsx │ ├── LeftDrawer │ │ ├── LeftDrawer.spec.tsx │ │ └── LeftDrawer.tsx │ ├── LeftDrawerOrg │ │ ├── LeftDrawerOrg.spec.tsx │ │ └── LeftDrawerOrg.tsx │ ├── Loader │ │ ├── Loader.spec.tsx │ │ └── 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.module.css │ │ ├── MemberRequestCard.spec.tsx │ │ ├── MemberRequestCard.tsx │ │ └── MemberRequestMocks.ts │ ├── NotFound │ │ ├── NotFound.spec.tsx │ │ └── NotFound.tsx │ ├── NotificationIcon │ │ ├── NotificationIcon.module.css │ │ ├── NotificationIcon.spec.tsx │ │ └── NotificationIcon.tsx │ ├── OrgAdminListCard │ │ ├── OrgAdminListCard.spec.tsx │ │ └── OrgAdminListCard.tsx │ ├── OrgContriCards │ │ ├── OrgContriCards.spec.tsx │ │ └── OrgContriCards.tsx │ ├── OrgDelete │ │ ├── OrgDelete.spec.tsx │ │ └── OrgDelete.tsx │ ├── OrgListCard │ │ ├── OrgListCard.spec.tsx │ │ ├── OrgListCard.tsx │ │ ├── TruncatedText.tsx │ │ ├── useDebounce.spec.ts │ │ └── useDebounce.tsx │ ├── OrgPeopleListCard │ │ ├── OrgPeopleListCard.spec.tsx │ │ └── OrgPeopleListCard.tsx │ ├── OrgPostCard │ │ ├── DeleteModal │ │ │ ├── DeletePostModal.spec.tsx │ │ │ └── DeletePostModal.tsx │ │ ├── OrgPostCard.spec.tsx │ │ ├── OrgPostCard.tsx │ │ └── postStyles.module.css │ ├── OrgSettings │ │ ├── ActionItemCategories │ │ │ ├── Modal │ │ │ │ ├── ActionItemCategoryModal.spec.tsx │ │ │ │ ├── ActionItemCategoryModal.tsx │ │ │ │ ├── ActionItemCategoryViewModal.spec.tsx │ │ │ │ └── ActionItemCategoryViewModal.tsx │ │ │ ├── OrgActionItemCategories.spec.tsx │ │ │ ├── OrgActionItemCategories.tsx │ │ │ └── OrgActionItemCategoryMocks.ts │ │ ├── AgendaItemCategories │ │ │ ├── Create │ │ │ │ ├── AgendaCategoryCreateModal.spec.tsx │ │ │ │ └── AgendaCategoryCreateModal.tsx │ │ │ ├── Delete │ │ │ │ ├── AgendaCategoryDeleteModal.spec.tsx │ │ │ │ └── AgendaCategoryDeleteModal.tsx │ │ │ ├── OrganizationAgendaCategory.spec.tsx │ │ │ ├── OrganizationAgendaCategory.tsx │ │ │ ├── OrganizationAgendaCategoryErrorMocks.ts │ │ │ ├── OrganizationAgendaCategoryMocks.ts │ │ │ ├── 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.module.css │ │ ├── OrganizationCardStart.spec.tsx │ │ └── OrganizationCardStart.tsx │ ├── OrganizationDashCards │ │ ├── CardItem │ │ │ ├── CardItem.spec.tsx │ │ │ ├── CardItem.tsx │ │ │ └── Loader │ │ │ │ ├── CardItemLoading.spec.tsx │ │ │ │ └── CardItemLoading.tsx │ │ ├── DashboardCard.spec.tsx │ │ ├── DashboardCard.tsx │ │ └── Loader │ │ │ ├── DashBoardCardLoading.spec.tsx │ │ │ └── DashboardCardLoading.tsx │ ├── OrganizationScreen │ │ ├── OrganizationScreen.module.css │ │ ├── OrganizationScreen.spec.tsx │ │ └── OrganizationScreen.tsx │ ├── Pagination │ │ ├── Navigator │ │ │ ├── Pagination.spec.tsx │ │ │ └── Pagination.tsx │ │ └── PaginationList │ │ │ ├── PaginationList.css │ │ │ ├── PaginationList.spec.tsx │ │ │ └── PaginationList.tsx │ ├── ProfileCard │ │ ├── ProfileCard.spec.tsx │ │ └── ProfileCard.tsx │ ├── ProfileDropdown │ │ ├── ProfileDropdown.spec.tsx │ │ └── ProfileDropdown.tsx │ ├── RequestsTableItem │ │ ├── RequestsTableItem.spec.tsx │ │ ├── RequestsTableItem.tsx │ │ └── RequestsTableItemMocks.ts │ ├── SecuredRoute │ │ ├── SecuredRoute.tsx │ │ └── securedRoute.spec.tsx │ ├── SignOut │ │ ├── SignOut.spec.tsx │ │ └── SignOut.tsx │ ├── SuperAdminScreen │ │ ├── SuperAdminScreen.spec.tsx │ │ └── SuperAdminScreen.tsx │ ├── TableLoader │ │ ├── TableLoader.module.css │ │ ├── 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 │ │ └── UserPasswordUpdateMocks.ts │ ├── UserPortal │ │ ├── ChatRoom │ │ │ ├── ChatRoom.module.css │ │ │ ├── ChatRoom.spec.tsx │ │ │ └── ChatRoom.tsx │ │ ├── CommentCard │ │ │ ├── CommentCard.module.css │ │ │ ├── CommentCard.spec.tsx │ │ │ └── CommentCard.tsx │ │ ├── ContactCard │ │ │ ├── ContactCard.module.css │ │ │ ├── ContactCard.spec.tsx │ │ │ └── ContactCard.tsx │ │ ├── CreateDirectChat │ │ │ ├── CreateDirectChat.spec.tsx │ │ │ └── CreateDirectChat.tsx │ │ ├── CreateGroupChat │ │ │ ├── CreateGroupChat.spec.tsx │ │ │ └── CreateGroupChat.tsx │ │ ├── DonationCard │ │ │ ├── DonationCard.spec.tsx │ │ │ └── DonationCard.tsx │ │ ├── EventCard │ │ │ ├── EventCard.module.css │ │ │ ├── EventCard.spec.tsx │ │ │ └── EventCard.tsx │ │ ├── OrganizationCard │ │ │ ├── OrganizationCard.spec.tsx │ │ │ └── OrganizationCard.tsx │ │ ├── OrganizationNavbar │ │ │ ├── OrganizationNavbar.module.css │ │ │ ├── OrganizationNavbar.spec.tsx │ │ │ └── OrganizationNavbar.tsx │ │ ├── OrganizationSidebar │ │ │ ├── OrganizationSidebar.module.css │ │ │ ├── OrganizationSidebar.spec.tsx │ │ │ └── OrganizationSidebar.tsx │ │ ├── PeopleCard │ │ │ ├── PeopleCard.spec.tsx │ │ │ └── PeopleCard.tsx │ │ ├── PostCard │ │ │ ├── PostCard.spec.tsx │ │ │ ├── PostCard.tsx │ │ │ └── Posts.module.css │ │ ├── PromotedPost │ │ │ ├── PromotedPost.spec.tsx │ │ │ └── PromotedPost.tsx │ │ ├── Register │ │ │ ├── Register.module.css │ │ │ ├── Register.spec.tsx │ │ │ └── Register.tsx │ │ ├── SecuredRouteForUser │ │ │ ├── SecuredRouteForUser.spec.tsx │ │ │ └── SecuredRouteForUser.tsx │ │ ├── StartPostModal │ │ │ ├── StartPostModal.spec.tsx │ │ │ └── StartPostModal.tsx │ │ ├── UserNavbar │ │ │ ├── UserNavbar.module.css │ │ │ ├── UserNavbar.spec.tsx │ │ │ └── UserNavbar.tsx │ │ ├── UserProfile │ │ │ ├── EventsAttendedByUser.spec.tsx │ │ │ ├── EventsAttendedByUser.tsx │ │ │ ├── UserAddressFields.spec.tsx │ │ │ ├── UserAddressFields.tsx │ │ │ └── common.module.css │ │ ├── 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 │ │ ├── UserTableItemMocks.ts │ │ └── UsersTableItem.tsx │ ├── Venues │ │ ├── Modal │ │ │ ├── VenueModal.spec.tsx │ │ │ └── VenueModal.tsx │ │ ├── VenueCard.spec.tsx │ │ ├── VenueCard.tsx │ │ └── VenueCardMocks.ts │ └── test-utils │ │ ├── AsyncComponent.tsx │ │ ├── I18nextProviderMock.tsx │ │ ├── MockBrowserRouter.tsx │ │ ├── TestErrorBoundary.tsx │ │ ├── TestWrapper.spec.tsx │ │ └── TestWrapper.tsx ├── constants.ts ├── index.spec.tsx ├── index.tsx ├── plugin │ ├── available │ │ └── readme.md │ ├── components │ │ └── PluginInjector.tsx │ ├── graphql-service.ts │ ├── hooks.ts │ ├── index.ts │ ├── manager.ts │ ├── managers │ │ ├── discovery.ts │ │ ├── event-manager.ts │ │ ├── extension-registry.ts │ │ └── lifecycle.ts │ ├── registry.tsx │ ├── routes │ │ ├── PluginRouteRenderer.tsx │ │ └── PluginRoutes.tsx │ ├── services │ │ ├── AdminPluginFileService.ts │ │ └── InternalFileWriter.ts │ ├── tests │ │ ├── EventManager.spec.ts │ │ ├── components │ │ │ └── PluginInjector.spec.tsx │ │ ├── graphql-service.spec.ts │ │ ├── hooks.spec.ts │ │ ├── manager.spec.ts │ │ ├── managers │ │ │ ├── discovery.spec.ts │ │ │ ├── event-manager.spec.ts │ │ │ ├── extension-registry.spec.ts │ │ │ └── lifecycle.spec.ts │ │ ├── registry.spec.ts │ │ ├── routes │ │ │ ├── PluginRouteRenderer.spec.tsx │ │ │ └── PluginRoutes.spec.tsx │ │ ├── services │ │ │ ├── AdminPluginFileService.spec.ts │ │ │ └── InternalFileWriter.spec.ts │ │ ├── utils.spec.ts │ │ └── vite │ │ │ └── internalFileWriterPlugin.spec.ts │ ├── types.ts │ ├── utils.ts │ └── vite │ │ └── internalFileWriterPlugin.ts ├── reportWebVitals.spec.ts ├── reportWebVitals.ts ├── screens │ ├── BlockUser │ │ ├── BlockUser.spec.tsx │ │ └── BlockUser.tsx │ ├── CommunityProfile │ │ ├── CommunityProfile.spec.tsx │ │ └── CommunityProfile.tsx │ ├── EventManagement │ │ ├── EventManagement.spec.tsx │ │ └── EventManagement.tsx │ ├── EventVolunteers │ │ ├── Requests │ │ │ ├── Requests.mocks.ts │ │ │ ├── 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.mocks.ts │ │ │ ├── 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.mocks.ts │ │ ├── Leaderboard.spec.tsx │ │ └── Leaderboard.tsx │ ├── LoginPage │ │ ├── LoginPage.spec.tsx │ │ └── LoginPage.tsx │ ├── ManageTag │ │ ├── ManageTag.spec.tsx │ │ ├── ManageTag.tsx │ │ ├── ManageTagMockComponents │ │ │ ├── MockAddPeopleToTag.tsx │ │ │ └── MockTagActions.tsx │ │ ├── ManageTagMockUtils.ts │ │ ├── ManageTagMocks.ts │ │ ├── ManageTagNonErrorMocks.ts │ │ ├── ManageTagNullFalsyMocks.ts │ │ ├── editModal │ │ │ ├── EditUserTagModal.spec.tsx │ │ │ └── EditUserTagModal.tsx │ │ ├── removeModal │ │ │ └── RemoveUserTagModal.tsx │ │ └── unassignModal │ │ │ └── UnassignUserTagModal.tsx │ ├── MemberDetail │ │ ├── MemberDetail.spec.tsx │ │ ├── MemberDetail.tsx │ │ └── MemberDetailMocks.ts │ ├── Notification │ │ ├── Notification.module.css │ │ ├── Notification.spec.tsx │ │ └── Notification.tsx │ ├── 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 │ │ ├── PinnedPostsStory.spec.tsx │ │ ├── PinnedPostsStory.tsx │ │ ├── Posts.spec.tsx │ │ ├── Posts.tsx │ │ └── postStyles.module.css │ ├── OrgSettings │ │ ├── OrgSettings.mocks.ts │ │ ├── OrgSettings.spec.tsx │ │ └── OrgSettings.tsx │ ├── OrganizationActionItems │ │ ├── ActionItemDeleteModal │ │ │ ├── ActionItemDeleteModal.spec.tsx │ │ │ └── ActionItemDeleteModal.tsx │ │ ├── ActionItemModal │ │ │ ├── ActionItemModal.spec.tsx │ │ │ └── ActionItemModal.tsx │ │ ├── ActionItemUpdateModal │ │ │ ├── ActionItemUpdateStatusModal.spec.tsx │ │ │ └── ActionItemUpdateStatusModal.tsx │ │ ├── ActionItemViewModal │ │ │ ├── ActionItemViewModal.spec.tsx │ │ │ └── ActionItemViewModal.tsx │ │ └── OrganizationActionItem.mocks.ts │ ├── OrganizationDashboard │ │ ├── OrganizationDashboard.spec.tsx │ │ ├── OrganizationDashboard.tsx │ │ ├── OrganizationDashboardMocks.ts │ │ └── components │ │ │ ├── DashboardStats.spec.tsx │ │ │ ├── DashboardStats.tsx │ │ │ ├── MembershipRequestsCard.spec.tsx │ │ │ ├── MembershipRequestsCard.tsx │ │ │ ├── RecentPostsCard.spec.tsx │ │ │ ├── RecentPostsCard.tsx │ │ │ ├── UpcomingEventsCard.spec.tsx │ │ │ └── UpcomingEventsCard.tsx │ ├── OrganizationEvents │ │ ├── CreateEventModal.tsx │ │ ├── CustomRecurrenceModal.spec.tsx │ │ ├── CustomRecurrenceModal.tsx │ │ ├── OrganizationEvents.spec.tsx │ │ ├── OrganizationEvents.tsx │ │ └── OrganizationEventsMocks.ts │ ├── 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 │ │ ├── OrganizationPeople.spec.tsx │ │ ├── OrganizationPeople.tsx │ │ └── addMember │ │ │ ├── AddMember.spec.tsx │ │ │ └── AddMember.tsx │ ├── OrganizationTags │ │ ├── OrganizationTags.spec.tsx │ │ ├── OrganizationTags.tsx │ │ └── OrganizationTagsMocks.ts │ ├── OrganizationTransactions │ │ ├── OrganizationTransactions.spec.tsx │ │ └── OrganizationTransactions.tsx │ ├── OrganizationVenues │ │ ├── OrganizationVenues.spec.tsx │ │ └── OrganizationVenues.tsx │ ├── PageNotFound │ │ ├── PageNotFound.spec.tsx │ │ └── PageNotFound.tsx │ ├── PluginStore │ │ ├── PluginModal.module.css │ │ ├── PluginModal.spec.tsx │ │ ├── PluginModal.tsx │ │ ├── PluginStore.spec.tsx │ │ ├── PluginStore.tsx │ │ ├── UploadPluginModal.spec.tsx │ │ ├── UploadPluginModal.tsx │ │ ├── components │ │ │ ├── PluginCard.tsx │ │ │ ├── PluginList.tsx │ │ │ ├── UninstallConfirmationModal.tsx │ │ │ └── index.ts │ │ └── hooks │ │ │ ├── index.ts │ │ │ ├── useInstallTimer.spec.ts │ │ │ ├── useInstallTimer.ts │ │ │ ├── usePluginActions.spec.ts │ │ │ ├── usePluginActions.ts │ │ │ ├── usePluginFilters.spec.ts │ │ │ └── usePluginFilters.ts │ ├── Public │ │ └── Invitation │ │ │ ├── AcceptInvitation.spec.tsx │ │ │ └── AcceptInvitation.tsx │ ├── Requests │ │ ├── Requests.spec.tsx │ │ ├── Requests.tsx │ │ └── RequestsMocks.ts │ ├── SubTags │ │ ├── SubTags.spec.tsx │ │ ├── SubTags.tsx │ │ └── SubTagsMocks.ts │ ├── UserPortal │ │ ├── Campaigns │ │ │ ├── Campaigns.spec.tsx │ │ │ ├── Campaigns.tsx │ │ │ ├── CampaignsMocks.ts │ │ │ ├── PledgeModal.spec.tsx │ │ │ └── PledgeModal.tsx │ │ ├── Chat │ │ │ ├── Chat.module.css │ │ │ ├── Chat.spec.tsx │ │ │ └── Chat.tsx │ │ ├── Donate │ │ │ ├── Donate.spec.tsx │ │ │ └── Donate.tsx │ │ ├── Events │ │ │ ├── Events.spec.tsx │ │ │ └── Events.tsx │ │ ├── LeaveOrganization │ │ │ ├── LeaveOrganization.module.css │ │ │ ├── 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 │ │ │ ├── PinnedPostCard.spec.tsx │ │ │ ├── PinnedPostCard.tsx │ │ │ ├── Posts.module.css │ │ │ ├── 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 │ │ ├── Transactions │ │ │ ├── Transactions.spec.tsx │ │ │ └── Transactions.tsx │ │ ├── UserGlobalScreen │ │ │ ├── UserGlobalScreen.spec.tsx │ │ │ └── UserGlobalScreen.tsx │ │ ├── UserScreen │ │ │ ├── UserScreen.module.css │ │ │ ├── UserScreen.spec.tsx │ │ │ └── UserScreen.tsx │ │ └── Volunteer │ │ │ ├── Actions │ │ │ ├── Actions.mocks.ts │ │ │ ├── Actions.spec.tsx │ │ │ └── Actions.tsx │ │ │ ├── Groups │ │ │ ├── GroupModal.spec.tsx │ │ │ ├── GroupModal.tsx │ │ │ ├── Groups.mocks.ts │ │ │ ├── Groups.spec.tsx │ │ │ └── Groups.tsx │ │ │ ├── Invitations │ │ │ ├── Invitations.mocks.ts │ │ │ ├── Invitations.spec.tsx │ │ │ └── Invitations.tsx │ │ │ ├── UpcomingEvents │ │ │ ├── RecurringEventVolunteerModal.tsx │ │ │ ├── UpcomingEvents.mocks.ts │ │ │ ├── UpcomingEvents.spec.tsx │ │ │ └── UpcomingEvents.tsx │ │ │ ├── VolunteerManagement.module.css │ │ │ ├── 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 │ ├── backupEnvFile │ │ ├── backupEnvFile.spec.ts │ │ └── backupEnvFile.ts │ ├── checkConnection │ │ ├── checkConnection.spec.ts │ │ └── checkConnection.ts │ ├── checkEnvFile │ │ ├── checkEnvFile.spec.ts │ │ └── checkEnvFile.ts │ ├── setup.spec.ts │ ├── setup.ts │ ├── updateEnvFile │ │ ├── updateEnvFile.spec.ts │ │ └── updateEnvFile.ts │ └── validateRecaptcha │ │ ├── validateRecaptcha.spec.ts │ │ └── validateRecaptcha.ts ├── setupTests.ts ├── state │ ├── action-creators │ │ └── index.ts │ ├── helpers │ │ ├── Action.spec.ts │ │ └── Action.ts │ ├── hooks.ts │ ├── reducers │ │ ├── index.ts │ │ ├── routesReducer.spec.ts │ │ ├── routesReducer.ts │ │ ├── userRoutersReducer.spec.ts │ │ └── userRoutesReducer.ts │ ├── store.spec.tsx │ └── store.ts ├── style │ └── app-fixed.module.css ├── subComponents │ ├── SearchBar.spec.tsx │ ├── SearchBar.tsx │ ├── SearchingButton.spec.tsx │ ├── SearchingButton.tsx │ └── SortingButton.tsx ├── test-utils │ └── mocks │ │ ├── react-bootstrap.tsx │ │ └── react-bootstrap │ │ ├── Dropdown.tsx │ │ ├── components │ │ ├── DropdownBase.tsx │ │ ├── DropdownItem.tsx │ │ ├── DropdownMenu.tsx │ │ └── DropdownToggle.tsx │ │ └── types.ts ├── types │ ├── ActionItems │ │ └── interface.ts │ ├── Advertisement │ │ ├── interface.ts │ │ └── type.ts │ ├── Agenda │ │ ├── interface.ts │ │ └── type.ts │ ├── Avatar │ │ └── interface.ts │ ├── Chat │ │ ├── interface.ts │ │ └── type.ts │ ├── CheckIn │ │ ├── interface.ts │ │ └── type.ts │ ├── Comment │ │ └── type.ts │ ├── Contribution │ │ └── interface.ts │ ├── Donation │ │ └── interface.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 │ ├── Volunteer │ │ └── interface.ts │ ├── actionItem.ts │ ├── address.ts │ ├── jsx.d.ts │ ├── membership.ts │ ├── pagination.ts │ └── venue.ts ├── utils │ ├── MinioDownload.spec.ts │ ├── MinioDownload.ts │ ├── MinioUpload.spec.tsx │ ├── MinioUpload.ts │ ├── StaticMockLink.spec.ts │ ├── StaticMockLink.ts │ ├── adminPluginInstaller.spec.ts │ ├── adminPluginInstaller.ts │ ├── chartToPdf.spec.ts │ ├── chartToPdf.ts │ ├── convertToBase64.spec.ts │ ├── convertToBase64.ts │ ├── currency.ts │ ├── dateFormatter.spec.ts │ ├── dateFormatter.ts │ ├── errorHandler.spec.tsx │ ├── errorHandler.tsx │ ├── fieldTypes.ts │ ├── fileValidation.ts │ ├── filehash.spec.ts │ ├── filehash.ts │ ├── formEnumFields.ts │ ├── getRefreshToken.spec.ts │ ├── getRefreshToken.ts │ ├── i18n.ts │ ├── i18nForTest.ts │ ├── interfaces.ts │ ├── languages.ts │ ├── linkValid.spec.tsx │ ├── linkValidator.ts │ ├── organizationTagsUtils.ts │ ├── passwordValidator.spec.ts │ ├── passwordValidator.ts │ ├── recurrenceUtils │ │ ├── index.ts │ │ ├── recurrenceConstants.ts │ │ ├── recurrenceTypes.ts │ │ ├── recurrenceUtilityFunctions.ts │ │ └── recurrenceUtils.spec.ts │ ├── sanitizeAvatar.spec.ts │ ├── sanitizeAvatar.ts │ ├── timezoneUtils │ │ ├── dateTimeConfig.ts │ │ ├── dateTimeMiddleware.spec.ts │ │ ├── dateTimeMiddleware.ts │ │ └── index.ts │ ├── urlToFile.spec.ts │ ├── urlToFile.ts │ ├── useLocalstorage.spec.ts │ ├── useLocalstorage.ts │ ├── useSession.spec.tsx │ └── useSession.tsx └── vite-env.d.ts ├── tsconfig.docs.json ├── tsconfig.json ├── typedoc.json ├── vitest.config.ts └── vitest.setup.ts /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.env.example -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/auto-assign.yml -------------------------------------------------------------------------------- /.github/workflows/auto-label.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/auto-label.json5 -------------------------------------------------------------------------------- /.github/workflows/check-tsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/check-tsdoc.js -------------------------------------------------------------------------------- /.github/workflows/codeql-codescan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/codeql-codescan.yml -------------------------------------------------------------------------------- /.github/workflows/config/check-pr-issue-skip-usernames.txt: -------------------------------------------------------------------------------- 1 | dependabot 2 | noman2002 3 | palisadoes 4 | -------------------------------------------------------------------------------- /.github/workflows/issue-assigned.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/issue-assigned.yml -------------------------------------------------------------------------------- /.github/workflows/issue-unassigned.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/issue-unassigned.yml -------------------------------------------------------------------------------- /.github/workflows/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/issue.yml -------------------------------------------------------------------------------- /.github/workflows/merge-conflict-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/merge-conflict-check.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/pull-request-review.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/pull-request-target.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/push-deploy-website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/push-deploy-website.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/requirements.txt -------------------------------------------------------------------------------- /.github/workflows/scripts/app_health_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/scripts/app_health_check.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/check_docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/scripts/check_docstrings.py -------------------------------------------------------------------------------- /.github/workflows/scripts/code_coverage_disable_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/scripts/code_coverage_disable_check.py -------------------------------------------------------------------------------- /.github/workflows/scripts/compare_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/scripts/compare_translations.py -------------------------------------------------------------------------------- /.github/workflows/scripts/countline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/scripts/countline.py -------------------------------------------------------------------------------- /.github/workflows/scripts/css_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/scripts/css_check.py -------------------------------------------------------------------------------- /.github/workflows/scripts/eslint_disable_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/scripts/eslint_disable_check.py -------------------------------------------------------------------------------- /.github/workflows/scripts/itskip_disable_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/scripts/itskip_disable_check.py -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.graphqlrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.graphqlrc.yml -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.husky/post-merge -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.prettierrc -------------------------------------------------------------------------------- /.pydocstyle: -------------------------------------------------------------------------------- 1 | [pydocstyle] 2 | convention=google 3 | add-ignore=D415,D205 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CODE_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/CODE_STYLE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /ISSUE_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/ISSUE_GUIDELINES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /PR_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/PR_GUIDELINES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | export default { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /config/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/config/babel.config.cjs -------------------------------------------------------------------------------- /config/docker/setup/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/config/docker/setup/nginx.conf -------------------------------------------------------------------------------- /config/docker/setup/nginx.prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/config/docker/setup/nginx.prod.conf -------------------------------------------------------------------------------- /config/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/config/vite.config.ts -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/README.md -------------------------------------------------------------------------------- /cypress/e2e/admin_spec/actionItem.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/e2e/admin_spec/actionItem.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/admin_spec/advertisement.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/e2e/admin_spec/advertisement.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/admin_spec/event.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/e2e/admin_spec/event.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/admin_spec/leftDrawer.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/e2e/admin_spec/leftDrawer.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/admin_spec/people.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/e2e/admin_spec/people.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/admin_spec/posts.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/e2e/admin_spec/posts.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/dashboard_spec/adminDashboard.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/e2e/dashboard_spec/adminDashboard.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/dashboard_spec/userDashboard.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/e2e/dashboard_spec/userDashboard.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/login_spec/adminLogin.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/e2e/login_spec/adminLogin.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/login_spec/userLogin.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/e2e/login_spec/userLogin.cy.ts -------------------------------------------------------------------------------- /cypress/fixtures/advertisementData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/fixtures/advertisementData.json -------------------------------------------------------------------------------- /cypress/fixtures/advertisement_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/fixtures/advertisement_banner.png -------------------------------------------------------------------------------- /cypress/fixtures/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/fixtures/users.json -------------------------------------------------------------------------------- /cypress/pageObjects/AdminPortal/ActionItemPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/pageObjects/AdminPortal/ActionItemPage.ts -------------------------------------------------------------------------------- /cypress/pageObjects/AdminPortal/AdminDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/pageObjects/AdminPortal/AdminDashboard.ts -------------------------------------------------------------------------------- /cypress/pageObjects/AdminPortal/AdminEventPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/pageObjects/AdminPortal/AdminEventPage.ts -------------------------------------------------------------------------------- /cypress/pageObjects/AdminPortal/AdvertisementPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/pageObjects/AdminPortal/AdvertisementPage.ts -------------------------------------------------------------------------------- /cypress/pageObjects/AdminPortal/LeftDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/pageObjects/AdminPortal/LeftDrawer.ts -------------------------------------------------------------------------------- /cypress/pageObjects/AdminPortal/PeoplePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/pageObjects/AdminPortal/PeoplePage.ts -------------------------------------------------------------------------------- /cypress/pageObjects/AdminPortal/PostPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/pageObjects/AdminPortal/PostPage.ts -------------------------------------------------------------------------------- /cypress/pageObjects/UserPortal/UserDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/pageObjects/UserPortal/UserDashboard.ts -------------------------------------------------------------------------------- /cypress/pageObjects/auth/LoginPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/pageObjects/auth/LoginPage.ts -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /docker/Dockerfile.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docker/Dockerfile.deploy -------------------------------------------------------------------------------- /docker/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docker/Dockerfile.dev -------------------------------------------------------------------------------- /docker/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docker/Dockerfile.prod -------------------------------------------------------------------------------- /docker/docker-compose.deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docker/docker-compose.deploy.yaml -------------------------------------------------------------------------------- /docker/docker-compose.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docker/docker-compose.dev.yaml -------------------------------------------------------------------------------- /docker/docker-compose.prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docker/docker-compose.prod.yaml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs-admin.talawa.io 2 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/Actions/functions/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/Actions/functions/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/App/functions/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/App/functions/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/DeleteUser/variables/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/DeleteUser/variables/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/GroupChatDetails/functions/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/GroupChatDetails/functions/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/LeaveOrganization/variables/userId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/LeaveOrganization/variables/userId.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/LoginPage/functions/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/LoginPage/functions/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/OrgContriCards/functions/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/OrgContriCards/functions/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/OrgContribution/functions/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/OrgContribution/functions/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/OtherSettings/variables/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/OtherSettings/variables/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/PledgeModal/README-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/PledgeModal/README-1.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/PledgeModal/variables/default-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/PledgeModal/variables/default-1.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/PledgeModal/variables/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/PledgeModal/variables/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/Register/functions/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/Register/functions/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/Requests/README-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/Requests/README-1.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/Requests/functions/default-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/Requests/functions/default-1.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/Requests/functions/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/Requests/functions/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/UserProfile/variables/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/UserProfile/variables/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/UserUpdate/variables/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/UserUpdate/variables/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/Volunteers/functions/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/Volunteers/functions/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/plugin/variables/PluginInjector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/plugin/variables/PluginInjector.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/plugin/variables/PluginRoutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/plugin/variables/PluginRoutes.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/reportWebVitals/functions/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/reportWebVitals/functions/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/setup/setup/functions/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/setup/setup/functions/main.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/state/reducers/variables/reducers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/state/reducers/variables/reducers.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/state/store/variables/store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/state/store/variables/store.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/type/type-aliases/User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/types/Event/type/type-aliases/User.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Event/utils/variables/months.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/types/Event/utils/variables/months.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/Post/type/type-aliases/Post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/types/Post/type/type-aliases/Post.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/User/type/type-aliases/User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/types/User/type/type-aliases/User.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/address/type-aliases/Address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/types/address/type-aliases/Address.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/types/venue/type-aliases/Venue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/types/venue/type-aliases/Venue.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/fieldTypes/variables/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/utils/fieldTypes/variables/default.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/interfaces/interfaces/IEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/utils/interfaces/interfaces/IEvent.md -------------------------------------------------------------------------------- /docs/docs/auto-docs/utils/useSession/functions/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/auto-docs/utils/useSession/functions/default.md -------------------------------------------------------------------------------- /docs/docs/docs/developer-resources/e2e-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/developer-resources/e2e-testing.md -------------------------------------------------------------------------------- /docs/docs/docs/developer-resources/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/developer-resources/introduction.md -------------------------------------------------------------------------------- /docs/docs/docs/developer-resources/minio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/developer-resources/minio.md -------------------------------------------------------------------------------- /docs/docs/docs/developer-resources/operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/developer-resources/operation.md -------------------------------------------------------------------------------- /docs/docs/docs/developer-resources/plugin-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/developer-resources/plugin-graphql.md -------------------------------------------------------------------------------- /docs/docs/docs/developer-resources/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/developer-resources/plugin.md -------------------------------------------------------------------------------- /docs/docs/docs/developer-resources/reusable-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/developer-resources/reusable-components.md -------------------------------------------------------------------------------- /docs/docs/docs/developer-resources/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/developer-resources/testing.md -------------------------------------------------------------------------------- /docs/docs/docs/developer-resources/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/developer-resources/troubleshooting.md -------------------------------------------------------------------------------- /docs/docs/docs/getting-started/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/getting-started/configuration.md -------------------------------------------------------------------------------- /docs/docs/docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/getting-started/installation.md -------------------------------------------------------------------------------- /docs/docs/docs/getting-started/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/getting-started/login.md -------------------------------------------------------------------------------- /docs/docs/docs/getting-started/operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/getting-started/operation.md -------------------------------------------------------------------------------- /docs/docs/docs/getting-started/webserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/getting-started/webserver.md -------------------------------------------------------------------------------- /docs/docs/docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/introduction.md -------------------------------------------------------------------------------- /docs/docs/docs/plugins/implementing-plugins-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/plugins/implementing-plugins-example.md -------------------------------------------------------------------------------- /docs/docs/docs/plugins/implementing-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/plugins/implementing-plugins.md -------------------------------------------------------------------------------- /docs/docs/docs/plugins/plugin-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docs/docs/plugins/plugin-architecture.md -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/layout/HeaderHero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/src/components/layout/HeaderHero.tsx -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/utils/ActionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/src/utils/ActionButton.tsx -------------------------------------------------------------------------------- /docs/src/utils/HomeCallToAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/src/utils/HomeCallToAction.tsx -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/CNAME: -------------------------------------------------------------------------------- 1 | docs-admin.talawa.io 2 | -------------------------------------------------------------------------------- /docs/static/img/docs/plugin/plugin-store-navbar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/docs/plugin/plugin-store-navbar.PNG -------------------------------------------------------------------------------- /docs/static/img/docs/plugin/plugin-types.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/docs/plugin/plugin-types.PNG -------------------------------------------------------------------------------- /docs/static/img/docs/plugin/store.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/docs/plugin/store.PNG -------------------------------------------------------------------------------- /docs/static/img/docs/plugin/talawa.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/docs/plugin/talawa.PNG -------------------------------------------------------------------------------- /docs/static/img/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/facebook.svg -------------------------------------------------------------------------------- /docs/static/img/icons/favicon_palisadoes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/favicon_palisadoes.ico -------------------------------------------------------------------------------- /docs/static/img/icons/github-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/github-dark.svg -------------------------------------------------------------------------------- /docs/static/img/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/github.svg -------------------------------------------------------------------------------- /docs/static/img/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/instagram.svg -------------------------------------------------------------------------------- /docs/static/img/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/logo.png -------------------------------------------------------------------------------- /docs/static/img/icons/opportunities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/opportunities.svg -------------------------------------------------------------------------------- /docs/static/img/icons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/slack.svg -------------------------------------------------------------------------------- /docs/static/img/icons/source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/source.svg -------------------------------------------------------------------------------- /docs/static/img/icons/team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/team.svg -------------------------------------------------------------------------------- /docs/static/img/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/twitter.svg -------------------------------------------------------------------------------- /docs/static/img/icons/youtube-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/youtube-white.svg -------------------------------------------------------------------------------- /docs/static/img/icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/icons/youtube.svg -------------------------------------------------------------------------------- /docs/static/img/markdown/installation/REACT_SITE_KEY.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/markdown/installation/REACT_SITE_KEY.webp -------------------------------------------------------------------------------- /docs/static/img/markdown/installation/Register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/markdown/installation/Register.png -------------------------------------------------------------------------------- /docs/static/img/markdown/installation/jest-preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/markdown/installation/jest-preview.webp -------------------------------------------------------------------------------- /docs/static/img/markdown/minio/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/markdown/minio/architecture.png -------------------------------------------------------------------------------- /docs/static/img/markdown/misc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/docs/static/img/markdown/misc/logo.png -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/index.html -------------------------------------------------------------------------------- /knip.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/knip.deps.json -------------------------------------------------------------------------------- /knip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/knip.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon_palisadoes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/favicon_palisadoes.ico -------------------------------------------------------------------------------- /public/images/REACT_SITE_KEY.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/REACT_SITE_KEY.webp -------------------------------------------------------------------------------- /public/images/jest-preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/jest-preview.webp -------------------------------------------------------------------------------- /public/images/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/logo512.png -------------------------------------------------------------------------------- /public/images/svg/angleDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/svg/angleDown.svg -------------------------------------------------------------------------------- /public/images/svg/angleRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/svg/angleRight.svg -------------------------------------------------------------------------------- /public/images/svg/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/svg/arrow-left.svg -------------------------------------------------------------------------------- /public/images/svg/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/svg/arrow-right.svg -------------------------------------------------------------------------------- /public/images/svg/attendees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/svg/attendees.svg -------------------------------------------------------------------------------- /public/images/svg/feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/svg/feedback.svg -------------------------------------------------------------------------------- /public/images/svg/options-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/svg/options-outline.svg -------------------------------------------------------------------------------- /public/images/svg/organization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/svg/organization.svg -------------------------------------------------------------------------------- /public/images/svg/profiledefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/svg/profiledefault.svg -------------------------------------------------------------------------------- /public/images/svg/up-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/images/svg/up-down.svg -------------------------------------------------------------------------------- /public/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/en/common.json -------------------------------------------------------------------------------- /public/locales/en/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/en/errors.json -------------------------------------------------------------------------------- /public/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/en/translation.json -------------------------------------------------------------------------------- /public/locales/es/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/es/common.json -------------------------------------------------------------------------------- /public/locales/es/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/es/errors.json -------------------------------------------------------------------------------- /public/locales/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/es/translation.json -------------------------------------------------------------------------------- /public/locales/fr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/fr/common.json -------------------------------------------------------------------------------- /public/locales/fr/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/fr/errors.json -------------------------------------------------------------------------------- /public/locales/fr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/fr/translation.json -------------------------------------------------------------------------------- /public/locales/hi/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/hi/common.json -------------------------------------------------------------------------------- /public/locales/hi/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/hi/errors.json -------------------------------------------------------------------------------- /public/locales/hi/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/hi/translation.json -------------------------------------------------------------------------------- /public/locales/zh/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/zh/common.json -------------------------------------------------------------------------------- /public/locales/zh/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/zh/errors.json -------------------------------------------------------------------------------- /public/locales/zh/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/locales/zh/translation.json -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/markdown/images/install1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/markdown/images/install1.png -------------------------------------------------------------------------------- /public/markdown/images/install2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/markdown/images/install2.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/public/robots.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/schema.graphql -------------------------------------------------------------------------------- /scripts/__mocks__/@dicebear/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/__mocks__/@dicebear/collection.ts -------------------------------------------------------------------------------- /scripts/__mocks__/@dicebear/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/__mocks__/@dicebear/core.ts -------------------------------------------------------------------------------- /scripts/__mocks__/@pdfme/generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/__mocks__/@pdfme/generator.spec.ts -------------------------------------------------------------------------------- /scripts/__mocks__/@pdfme/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/__mocks__/@pdfme/generator.ts -------------------------------------------------------------------------------- /scripts/__mocks__/fileMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/__mocks__/fileMock.js -------------------------------------------------------------------------------- /scripts/custom-test-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/custom-test-env.js -------------------------------------------------------------------------------- /scripts/delete-readmes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/delete-readmes.js -------------------------------------------------------------------------------- /scripts/docs/fix-readme-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/docs/fix-readme-links.js -------------------------------------------------------------------------------- /scripts/docs/fix-repo-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/docs/fix-repo-url.js -------------------------------------------------------------------------------- /scripts/githooks/check-localstorage-usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/githooks/check-localstorage-usage.ts -------------------------------------------------------------------------------- /scripts/githooks/check_pom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/githooks/check_pom.js -------------------------------------------------------------------------------- /scripts/githooks/update-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/githooks/update-toc.js -------------------------------------------------------------------------------- /scripts/run-shard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/run-shard.js -------------------------------------------------------------------------------- /scripts/start-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/scripts/start-server.js -------------------------------------------------------------------------------- /src/App.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/App.spec.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Constant/constant.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/Constant/constant.spec.ts -------------------------------------------------------------------------------- /src/Constant/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/Constant/constant.ts -------------------------------------------------------------------------------- /src/Constant/fileUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/Constant/fileUpload.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/ActionItemCategoryMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/ActionItemCategoryMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/ActionItemMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/ActionItemMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/AdvertisementMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/AdvertisementMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/AgendaCategoryMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/AgendaCategoryMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/AgendaItemMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/AgendaItemMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/CampaignMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/CampaignMutation.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/CommentMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/CommentMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/EventAttendeeMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/EventAttendeeMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/EventMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/EventMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/EventVolunteerMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/EventVolunteerMutation.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/FundMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/FundMutation.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/OrganizationMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/OrganizationMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/PledgeMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/PledgeMutation.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/PluginMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/PluginMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/TagMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/TagMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/VenueMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/VenueMutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Mutations/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Mutations/mutations.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/ActionItemCategoryQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/ActionItemCategoryQueries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/ActionItemQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/ActionItemQueries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/AdvertisementQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/AdvertisementQueries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/AgendaCategoryQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/AgendaCategoryQueries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/AgendaItemQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/AgendaItemQueries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/CommentQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/CommentQueries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/EventVolunteerQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/EventVolunteerQueries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/NotificationQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/NotificationQueries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/OrganizationQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/OrganizationQueries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/PlugInQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/PlugInQueries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/Queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/Queries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/VenueQueries.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/VenueQueries.spec.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/fundQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/fundQueries.ts -------------------------------------------------------------------------------- /src/GraphQl/Queries/userTagQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/GraphQl/Queries/userTagQueries.ts -------------------------------------------------------------------------------- /src/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/css/app.css -------------------------------------------------------------------------------- /src/assets/css/app.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/css/app.css.map -------------------------------------------------------------------------------- /src/assets/css/scrollStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/css/scrollStyles.css -------------------------------------------------------------------------------- /src/assets/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/images/blank.png -------------------------------------------------------------------------------- /src/assets/images/bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/images/bronze.png -------------------------------------------------------------------------------- /src/assets/images/defaultImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/images/defaultImg.png -------------------------------------------------------------------------------- /src/assets/images/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/images/gold.png -------------------------------------------------------------------------------- /src/assets/images/palisadoes_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/images/palisadoes_logo.png -------------------------------------------------------------------------------- /src/assets/images/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/images/silver.png -------------------------------------------------------------------------------- /src/assets/images/talawa-logo-600x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/images/talawa-logo-600x600.png -------------------------------------------------------------------------------- /src/assets/images/talawa-logo-dark-200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/images/talawa-logo-dark-200x200.png -------------------------------------------------------------------------------- /src/assets/images/talawa-logo-lite-200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/images/talawa-logo-lite-200x200.png -------------------------------------------------------------------------------- /src/assets/scss/_colors.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/scss/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/_general.scss -------------------------------------------------------------------------------- /src/assets/scss/_talawa.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/_talawa.scss -------------------------------------------------------------------------------- /src/assets/scss/_utilities.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/_variables.scss -------------------------------------------------------------------------------- /src/assets/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/app.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_accordion.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_alert.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_badge.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_breadcrumb.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_buttons.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_card.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_carousel.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_close.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_dropdown.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_list-group.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_modal.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_nav.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_navbar.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_offcanvas.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_pagination.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_placeholder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_placeholder.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_progress.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/components/_spinners.scss -------------------------------------------------------------------------------- /src/assets/scss/content/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/content/_table.scss -------------------------------------------------------------------------------- /src/assets/scss/content/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/content/_typography.scss -------------------------------------------------------------------------------- /src/assets/scss/forms/_check-radios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/forms/_check-radios.scss -------------------------------------------------------------------------------- /src/assets/scss/forms/_floating-label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/forms/_floating-label.scss -------------------------------------------------------------------------------- /src/assets/scss/forms/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/forms/_form-control.scss -------------------------------------------------------------------------------- /src/assets/scss/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/forms/_input-group.scss -------------------------------------------------------------------------------- /src/assets/scss/forms/_range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/forms/_range.scss -------------------------------------------------------------------------------- /src/assets/scss/forms/_select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/forms/_select.scss -------------------------------------------------------------------------------- /src/assets/scss/forms/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/scss/forms/_validation.scss -------------------------------------------------------------------------------- /src/assets/svgs/Attendance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/Attendance.svg -------------------------------------------------------------------------------- /src/assets/svgs/actionItem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/actionItem.svg -------------------------------------------------------------------------------- /src/assets/svgs/admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/admin.svg -------------------------------------------------------------------------------- /src/assets/svgs/agenda-category-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/agenda-category-icon.svg -------------------------------------------------------------------------------- /src/assets/svgs/agenda-items.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/agenda-items.svg -------------------------------------------------------------------------------- /src/assets/svgs/angleRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/angleRight.svg -------------------------------------------------------------------------------- /src/assets/svgs/article.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/article.svg -------------------------------------------------------------------------------- /src/assets/svgs/blockUser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/blockUser.svg -------------------------------------------------------------------------------- /src/assets/svgs/blockedUser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/blockedUser.svg -------------------------------------------------------------------------------- /src/assets/svgs/cardItemDate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/cardItemDate.svg -------------------------------------------------------------------------------- /src/assets/svgs/cardItemEvent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/cardItemEvent.svg -------------------------------------------------------------------------------- /src/assets/svgs/cardItemLocation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/cardItemLocation.svg -------------------------------------------------------------------------------- /src/assets/svgs/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/chat.svg -------------------------------------------------------------------------------- /src/assets/svgs/checkInRegistrants.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/checkInRegistrants.svg -------------------------------------------------------------------------------- /src/assets/svgs/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/dashboard.svg -------------------------------------------------------------------------------- /src/assets/svgs/date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/date.svg -------------------------------------------------------------------------------- /src/assets/svgs/event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/event.svg -------------------------------------------------------------------------------- /src/assets/svgs/events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/events.svg -------------------------------------------------------------------------------- /src/assets/svgs/flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/flask.svg -------------------------------------------------------------------------------- /src/assets/svgs/funds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/funds.svg -------------------------------------------------------------------------------- /src/assets/svgs/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/key.svg -------------------------------------------------------------------------------- /src/assets/svgs/listEventRegistrants.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/listEventRegistrants.svg -------------------------------------------------------------------------------- /src/assets/svgs/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/location.svg -------------------------------------------------------------------------------- /src/assets/svgs/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/logout.svg -------------------------------------------------------------------------------- /src/assets/svgs/media.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/media.svg -------------------------------------------------------------------------------- /src/assets/svgs/newChat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/newChat.svg -------------------------------------------------------------------------------- /src/assets/svgs/organizations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/organizations.svg -------------------------------------------------------------------------------- /src/assets/svgs/palisadoes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/palisadoes.svg -------------------------------------------------------------------------------- /src/assets/svgs/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/people.svg -------------------------------------------------------------------------------- /src/assets/svgs/plugins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/plugins.svg -------------------------------------------------------------------------------- /src/assets/svgs/post.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/post.svg -------------------------------------------------------------------------------- /src/assets/svgs/posts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/posts.svg -------------------------------------------------------------------------------- /src/assets/svgs/requests.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/requests.svg -------------------------------------------------------------------------------- /src/assets/svgs/roles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/roles.svg -------------------------------------------------------------------------------- /src/assets/svgs/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/settings.svg -------------------------------------------------------------------------------- /src/assets/svgs/social-icons/Facebook-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/social-icons/Facebook-Logo.svg -------------------------------------------------------------------------------- /src/assets/svgs/social-icons/Github-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/social-icons/Github-Logo.svg -------------------------------------------------------------------------------- /src/assets/svgs/social-icons/Instagram-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/social-icons/Instagram-Logo.svg -------------------------------------------------------------------------------- /src/assets/svgs/social-icons/Linkedin-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/social-icons/Linkedin-Logo.svg -------------------------------------------------------------------------------- /src/assets/svgs/social-icons/Reddit-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/social-icons/Reddit-Logo.svg -------------------------------------------------------------------------------- /src/assets/svgs/social-icons/Slack-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/social-icons/Slack-Logo.svg -------------------------------------------------------------------------------- /src/assets/svgs/social-icons/X-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/social-icons/X-Logo.svg -------------------------------------------------------------------------------- /src/assets/svgs/social-icons/Youtube-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/social-icons/Youtube-Logo.svg -------------------------------------------------------------------------------- /src/assets/svgs/social-icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/social-icons/index.tsx -------------------------------------------------------------------------------- /src/assets/svgs/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/tag.svg -------------------------------------------------------------------------------- /src/assets/svgs/tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/tags.svg -------------------------------------------------------------------------------- /src/assets/svgs/talawa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/talawa.svg -------------------------------------------------------------------------------- /src/assets/svgs/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/user.svg -------------------------------------------------------------------------------- /src/assets/svgs/userEvent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/userEvent.svg -------------------------------------------------------------------------------- /src/assets/svgs/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/users.svg -------------------------------------------------------------------------------- /src/assets/svgs/venues.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/assets/svgs/venues.svg -------------------------------------------------------------------------------- /src/components/AddPeopleToTag/AddPeopleToTag.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/AddPeopleToTag/AddPeopleToTag.spec.tsx -------------------------------------------------------------------------------- /src/components/AddPeopleToTag/AddPeopleToTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/AddPeopleToTag/AddPeopleToTag.tsx -------------------------------------------------------------------------------- /src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts -------------------------------------------------------------------------------- /src/components/Advertisements/Advertisements.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Advertisements/Advertisements.spec.tsx -------------------------------------------------------------------------------- /src/components/Advertisements/Advertisements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Advertisements/Advertisements.tsx -------------------------------------------------------------------------------- /src/components/Advertisements/AdvertisementsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Advertisements/AdvertisementsMocks.ts -------------------------------------------------------------------------------- /src/components/AgendaCategory/AgendaCategoryContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/AgendaCategory/AgendaCategoryContainer.tsx -------------------------------------------------------------------------------- /src/components/AgendaItems/AgendaItemsContainer.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/AgendaItems/AgendaItemsContainer.spec.tsx -------------------------------------------------------------------------------- /src/components/AgendaItems/AgendaItemsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/AgendaItems/AgendaItemsContainer.tsx -------------------------------------------------------------------------------- /src/components/AgendaItems/AgendaItemsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/AgendaItems/AgendaItemsMocks.ts -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Avatar/Avatar.module.css -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Avatar/Avatar.spec.tsx -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Avatar/Avatar.tsx -------------------------------------------------------------------------------- /src/components/CheckIn/CheckInMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/CheckIn/CheckInMocks.ts -------------------------------------------------------------------------------- /src/components/CheckIn/CheckInWrapper.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/CheckIn/CheckInWrapper.spec.tsx -------------------------------------------------------------------------------- /src/components/CheckIn/CheckInWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/CheckIn/CheckInWrapper.tsx -------------------------------------------------------------------------------- /src/components/CheckIn/Modal/CheckInModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/CheckIn/Modal/CheckInModal.spec.tsx -------------------------------------------------------------------------------- /src/components/CheckIn/Modal/CheckInModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/CheckIn/Modal/CheckInModal.tsx -------------------------------------------------------------------------------- /src/components/CheckIn/Modal/Row/TableRow.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/CheckIn/Modal/Row/TableRow.spec.tsx -------------------------------------------------------------------------------- /src/components/CheckIn/Modal/Row/TableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/CheckIn/Modal/Row/TableRow.tsx -------------------------------------------------------------------------------- /src/components/CheckIn/tagTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/CheckIn/tagTemplate.ts -------------------------------------------------------------------------------- /src/components/ContriStats/ContriStats.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/ContriStats/ContriStats.spec.tsx -------------------------------------------------------------------------------- /src/components/ContriStats/ContriStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/ContriStats/ContriStats.tsx -------------------------------------------------------------------------------- /src/components/DynamicDropDown/DynamicDropDown.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/DynamicDropDown/DynamicDropDown.spec.tsx -------------------------------------------------------------------------------- /src/components/DynamicDropDown/DynamicDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/DynamicDropDown/DynamicDropDown.tsx -------------------------------------------------------------------------------- /src/components/EventCalender/EventCalenderMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventCalender/EventCalenderMocks.ts -------------------------------------------------------------------------------- /src/components/EventCalender/Header/EventHeader.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventCalender/Header/EventHeader.spec.tsx -------------------------------------------------------------------------------- /src/components/EventCalender/Header/EventHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventCalender/Header/EventHeader.tsx -------------------------------------------------------------------------------- /src/components/EventCalender/Monthly/EventCalender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventCalender/Monthly/EventCalender.tsx -------------------------------------------------------------------------------- /src/components/EventListCard/EventListCard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventListCard/EventListCard.spec.tsx -------------------------------------------------------------------------------- /src/components/EventListCard/EventListCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventListCard/EventListCard.tsx -------------------------------------------------------------------------------- /src/components/EventListCard/EventListCardProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventListCard/EventListCardProps.ts -------------------------------------------------------------------------------- /src/components/EventListCard/Modal/updateLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventListCard/Modal/updateLogic.ts -------------------------------------------------------------------------------- /src/components/EventStats/EventStatsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventStats/EventStatsMocks.ts -------------------------------------------------------------------------------- /src/components/EventStats/EventStatsWrapper.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventStats/EventStatsWrapper.spec.tsx -------------------------------------------------------------------------------- /src/components/EventStats/EventStatsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventStats/EventStatsWrapper.tsx -------------------------------------------------------------------------------- /src/components/EventStats/Statistics/EventStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventStats/Statistics/EventStats.tsx -------------------------------------------------------------------------------- /src/components/EventStats/Statistics/Review/Review.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventStats/Statistics/Review/Review.tsx -------------------------------------------------------------------------------- /src/components/EventStats/css/EventStats.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventStats/css/EventStats.module.css -------------------------------------------------------------------------------- /src/components/EventStats/css/Loader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/EventStats/css/Loader.module.css -------------------------------------------------------------------------------- /src/components/GroupChatDetails/GroupChatDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/GroupChatDetails/GroupChatDetails.tsx -------------------------------------------------------------------------------- /src/components/HolidayCards/HolidayCard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/HolidayCards/HolidayCard.spec.tsx -------------------------------------------------------------------------------- /src/components/HolidayCards/HolidayCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/HolidayCards/HolidayCard.tsx -------------------------------------------------------------------------------- /src/components/IconComponent/IconComponent.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/IconComponent/IconComponent.spec.tsx -------------------------------------------------------------------------------- /src/components/IconComponent/IconComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/IconComponent/IconComponent.tsx -------------------------------------------------------------------------------- /src/components/LeftDrawer/LeftDrawer.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/LeftDrawer/LeftDrawer.spec.tsx -------------------------------------------------------------------------------- /src/components/LeftDrawer/LeftDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/LeftDrawer/LeftDrawer.tsx -------------------------------------------------------------------------------- /src/components/LeftDrawerOrg/LeftDrawerOrg.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/LeftDrawerOrg/LeftDrawerOrg.spec.tsx -------------------------------------------------------------------------------- /src/components/LeftDrawerOrg/LeftDrawerOrg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx -------------------------------------------------------------------------------- /src/components/Loader/Loader.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Loader/Loader.spec.tsx -------------------------------------------------------------------------------- /src/components/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Loader/Loader.tsx -------------------------------------------------------------------------------- /src/components/LoginPortalToggle/LoginPortalToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/LoginPortalToggle/LoginPortalToggle.tsx -------------------------------------------------------------------------------- /src/components/MemberActivity/MemberActivityMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/MemberActivity/MemberActivityMocks.ts -------------------------------------------------------------------------------- /src/components/MemberRequestCard/MemberRequestCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/MemberRequestCard/MemberRequestCard.tsx -------------------------------------------------------------------------------- /src/components/MemberRequestCard/MemberRequestMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/MemberRequestCard/MemberRequestMocks.ts -------------------------------------------------------------------------------- /src/components/NotFound/NotFound.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/NotFound/NotFound.spec.tsx -------------------------------------------------------------------------------- /src/components/NotFound/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/NotFound/NotFound.tsx -------------------------------------------------------------------------------- /src/components/NotificationIcon/NotificationIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/NotificationIcon/NotificationIcon.tsx -------------------------------------------------------------------------------- /src/components/OrgAdminListCard/OrgAdminListCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgAdminListCard/OrgAdminListCard.tsx -------------------------------------------------------------------------------- /src/components/OrgContriCards/OrgContriCards.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgContriCards/OrgContriCards.spec.tsx -------------------------------------------------------------------------------- /src/components/OrgContriCards/OrgContriCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgContriCards/OrgContriCards.tsx -------------------------------------------------------------------------------- /src/components/OrgDelete/OrgDelete.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgDelete/OrgDelete.spec.tsx -------------------------------------------------------------------------------- /src/components/OrgDelete/OrgDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgDelete/OrgDelete.tsx -------------------------------------------------------------------------------- /src/components/OrgListCard/OrgListCard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgListCard/OrgListCard.spec.tsx -------------------------------------------------------------------------------- /src/components/OrgListCard/OrgListCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgListCard/OrgListCard.tsx -------------------------------------------------------------------------------- /src/components/OrgListCard/TruncatedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgListCard/TruncatedText.tsx -------------------------------------------------------------------------------- /src/components/OrgListCard/useDebounce.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgListCard/useDebounce.spec.ts -------------------------------------------------------------------------------- /src/components/OrgListCard/useDebounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgListCard/useDebounce.tsx -------------------------------------------------------------------------------- /src/components/OrgPeopleListCard/OrgPeopleListCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx -------------------------------------------------------------------------------- /src/components/OrgPostCard/OrgPostCard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgPostCard/OrgPostCard.spec.tsx -------------------------------------------------------------------------------- /src/components/OrgPostCard/OrgPostCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgPostCard/OrgPostCard.tsx -------------------------------------------------------------------------------- /src/components/OrgPostCard/postStyles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgPostCard/postStyles.module.css -------------------------------------------------------------------------------- /src/components/OrgSettings/General/GeneralSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrgSettings/General/GeneralSettings.tsx -------------------------------------------------------------------------------- /src/components/OrganizationDashCards/DashboardCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/OrganizationDashCards/DashboardCard.tsx -------------------------------------------------------------------------------- /src/components/Pagination/Navigator/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Pagination/Navigator/Pagination.tsx -------------------------------------------------------------------------------- /src/components/ProfileCard/ProfileCard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/ProfileCard/ProfileCard.spec.tsx -------------------------------------------------------------------------------- /src/components/ProfileCard/ProfileCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/ProfileCard/ProfileCard.tsx -------------------------------------------------------------------------------- /src/components/ProfileDropdown/ProfileDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/ProfileDropdown/ProfileDropdown.tsx -------------------------------------------------------------------------------- /src/components/RequestsTableItem/RequestsTableItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/RequestsTableItem/RequestsTableItem.tsx -------------------------------------------------------------------------------- /src/components/SecuredRoute/SecuredRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/SecuredRoute/SecuredRoute.tsx -------------------------------------------------------------------------------- /src/components/SecuredRoute/securedRoute.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/SecuredRoute/securedRoute.spec.tsx -------------------------------------------------------------------------------- /src/components/SignOut/SignOut.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/SignOut/SignOut.spec.tsx -------------------------------------------------------------------------------- /src/components/SignOut/SignOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/SignOut/SignOut.tsx -------------------------------------------------------------------------------- /src/components/SuperAdminScreen/SuperAdminScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/SuperAdminScreen/SuperAdminScreen.tsx -------------------------------------------------------------------------------- /src/components/TableLoader/TableLoader.module.css: -------------------------------------------------------------------------------- 1 | .loadingItem { 2 | height: 30px; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/TableLoader/TableLoader.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/TableLoader/TableLoader.spec.tsx -------------------------------------------------------------------------------- /src/components/TableLoader/TableLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/TableLoader/TableLoader.tsx -------------------------------------------------------------------------------- /src/components/TagActions/Node/TagNode.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/TagActions/Node/TagNode.spec.tsx -------------------------------------------------------------------------------- /src/components/TagActions/Node/TagNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/TagActions/Node/TagNode.tsx -------------------------------------------------------------------------------- /src/components/TagActions/Node/TagNodeMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/TagActions/Node/TagNodeMocks.ts -------------------------------------------------------------------------------- /src/components/TagActions/TagActions.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/TagActions/TagActions.spec.tsx -------------------------------------------------------------------------------- /src/components/TagActions/TagActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/TagActions/TagActions.tsx -------------------------------------------------------------------------------- /src/components/TagActions/TagActionsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/TagActions/TagActionsMocks.ts -------------------------------------------------------------------------------- /src/components/UpdateSession/UpdateSession.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UpdateSession/UpdateSession.spec.tsx -------------------------------------------------------------------------------- /src/components/UpdateSession/UpdateSession.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UpdateSession/UpdateSession.tsx -------------------------------------------------------------------------------- /src/components/UserListCard/UserListCard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserListCard/UserListCard.spec.tsx -------------------------------------------------------------------------------- /src/components/UserListCard/UserListCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserListCard/UserListCard.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/ChatRoom/ChatRoom.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/ChatRoom/ChatRoom.module.css -------------------------------------------------------------------------------- /src/components/UserPortal/ChatRoom/ChatRoom.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/ChatRoom/ChatRoom.spec.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/ChatRoom/ChatRoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/ChatRoom/ChatRoom.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/CommentCard/CommentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/CommentCard/CommentCard.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/ContactCard/ContactCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/ContactCard/ContactCard.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/EventCard/EventCard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/EventCard/EventCard.spec.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/EventCard/EventCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/EventCard/EventCard.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/PeopleCard/PeopleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/PeopleCard/PeopleCard.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/PostCard/PostCard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/PostCard/PostCard.spec.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/PostCard/PostCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/PostCard/PostCard.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/PostCard/Posts.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/PostCard/Posts.module.css -------------------------------------------------------------------------------- /src/components/UserPortal/Register/Register.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/Register/Register.module.css -------------------------------------------------------------------------------- /src/components/UserPortal/Register/Register.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/Register/Register.spec.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/Register/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/Register/Register.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/UserNavbar/UserNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/UserNavbar/UserNavbar.tsx -------------------------------------------------------------------------------- /src/components/UserPortal/UserSidebar/UserSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserPortal/UserSidebar/UserSidebar.tsx -------------------------------------------------------------------------------- /src/components/UserProfileSettings/UserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UserProfileSettings/UserProfile.tsx -------------------------------------------------------------------------------- /src/components/UsersTableItem/UserTableItem.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UsersTableItem/UserTableItem.spec.tsx -------------------------------------------------------------------------------- /src/components/UsersTableItem/UserTableItemMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UsersTableItem/UserTableItemMocks.ts -------------------------------------------------------------------------------- /src/components/UsersTableItem/UsersTableItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/UsersTableItem/UsersTableItem.tsx -------------------------------------------------------------------------------- /src/components/Venues/Modal/VenueModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Venues/Modal/VenueModal.spec.tsx -------------------------------------------------------------------------------- /src/components/Venues/Modal/VenueModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Venues/Modal/VenueModal.tsx -------------------------------------------------------------------------------- /src/components/Venues/VenueCard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Venues/VenueCard.spec.tsx -------------------------------------------------------------------------------- /src/components/Venues/VenueCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Venues/VenueCard.tsx -------------------------------------------------------------------------------- /src/components/Venues/VenueCardMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/Venues/VenueCardMocks.ts -------------------------------------------------------------------------------- /src/components/test-utils/AsyncComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/test-utils/AsyncComponent.tsx -------------------------------------------------------------------------------- /src/components/test-utils/I18nextProviderMock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/test-utils/I18nextProviderMock.tsx -------------------------------------------------------------------------------- /src/components/test-utils/MockBrowserRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/test-utils/MockBrowserRouter.tsx -------------------------------------------------------------------------------- /src/components/test-utils/TestErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/test-utils/TestErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/test-utils/TestWrapper.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/test-utils/TestWrapper.spec.tsx -------------------------------------------------------------------------------- /src/components/test-utils/TestWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/components/test-utils/TestWrapper.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/index.spec.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/plugin/available/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/available/readme.md -------------------------------------------------------------------------------- /src/plugin/components/PluginInjector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/components/PluginInjector.tsx -------------------------------------------------------------------------------- /src/plugin/graphql-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/graphql-service.ts -------------------------------------------------------------------------------- /src/plugin/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/hooks.ts -------------------------------------------------------------------------------- /src/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/index.ts -------------------------------------------------------------------------------- /src/plugin/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/manager.ts -------------------------------------------------------------------------------- /src/plugin/managers/discovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/managers/discovery.ts -------------------------------------------------------------------------------- /src/plugin/managers/event-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/managers/event-manager.ts -------------------------------------------------------------------------------- /src/plugin/managers/extension-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/managers/extension-registry.ts -------------------------------------------------------------------------------- /src/plugin/managers/lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/managers/lifecycle.ts -------------------------------------------------------------------------------- /src/plugin/registry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/registry.tsx -------------------------------------------------------------------------------- /src/plugin/routes/PluginRouteRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/routes/PluginRouteRenderer.tsx -------------------------------------------------------------------------------- /src/plugin/routes/PluginRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/routes/PluginRoutes.tsx -------------------------------------------------------------------------------- /src/plugin/services/AdminPluginFileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/services/AdminPluginFileService.ts -------------------------------------------------------------------------------- /src/plugin/services/InternalFileWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/services/InternalFileWriter.ts -------------------------------------------------------------------------------- /src/plugin/tests/EventManager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/EventManager.spec.ts -------------------------------------------------------------------------------- /src/plugin/tests/components/PluginInjector.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/components/PluginInjector.spec.tsx -------------------------------------------------------------------------------- /src/plugin/tests/graphql-service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/graphql-service.spec.ts -------------------------------------------------------------------------------- /src/plugin/tests/hooks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/hooks.spec.ts -------------------------------------------------------------------------------- /src/plugin/tests/manager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/manager.spec.ts -------------------------------------------------------------------------------- /src/plugin/tests/managers/discovery.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/managers/discovery.spec.ts -------------------------------------------------------------------------------- /src/plugin/tests/managers/event-manager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/managers/event-manager.spec.ts -------------------------------------------------------------------------------- /src/plugin/tests/managers/extension-registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/managers/extension-registry.spec.ts -------------------------------------------------------------------------------- /src/plugin/tests/managers/lifecycle.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/managers/lifecycle.spec.ts -------------------------------------------------------------------------------- /src/plugin/tests/registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/registry.spec.ts -------------------------------------------------------------------------------- /src/plugin/tests/routes/PluginRouteRenderer.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/routes/PluginRouteRenderer.spec.tsx -------------------------------------------------------------------------------- /src/plugin/tests/routes/PluginRoutes.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/routes/PluginRoutes.spec.tsx -------------------------------------------------------------------------------- /src/plugin/tests/services/InternalFileWriter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/services/InternalFileWriter.spec.ts -------------------------------------------------------------------------------- /src/plugin/tests/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/utils.spec.ts -------------------------------------------------------------------------------- /src/plugin/tests/vite/internalFileWriterPlugin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/tests/vite/internalFileWriterPlugin.spec.ts -------------------------------------------------------------------------------- /src/plugin/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/types.ts -------------------------------------------------------------------------------- /src/plugin/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/utils.ts -------------------------------------------------------------------------------- /src/plugin/vite/internalFileWriterPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/plugin/vite/internalFileWriterPlugin.ts -------------------------------------------------------------------------------- /src/reportWebVitals.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/reportWebVitals.spec.ts -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/screens/BlockUser/BlockUser.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/BlockUser/BlockUser.spec.tsx -------------------------------------------------------------------------------- /src/screens/BlockUser/BlockUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/BlockUser/BlockUser.tsx -------------------------------------------------------------------------------- /src/screens/CommunityProfile/CommunityProfile.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/CommunityProfile/CommunityProfile.spec.tsx -------------------------------------------------------------------------------- /src/screens/CommunityProfile/CommunityProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/CommunityProfile/CommunityProfile.tsx -------------------------------------------------------------------------------- /src/screens/EventManagement/EventManagement.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/EventManagement/EventManagement.spec.tsx -------------------------------------------------------------------------------- /src/screens/EventManagement/EventManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/EventManagement/EventManagement.tsx -------------------------------------------------------------------------------- /src/screens/EventVolunteers/Requests/Requests.mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/EventVolunteers/Requests/Requests.mocks.ts -------------------------------------------------------------------------------- /src/screens/EventVolunteers/Requests/Requests.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/EventVolunteers/Requests/Requests.spec.tsx -------------------------------------------------------------------------------- /src/screens/EventVolunteers/Requests/Requests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/EventVolunteers/Requests/Requests.tsx -------------------------------------------------------------------------------- /src/screens/EventVolunteers/VolunteerContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/EventVolunteers/VolunteerContainer.tsx -------------------------------------------------------------------------------- /src/screens/EventVolunteers/Volunteers/Volunteers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/EventVolunteers/Volunteers/Volunteers.tsx -------------------------------------------------------------------------------- /src/screens/ForgotPassword/ForgotPassword.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/ForgotPassword/ForgotPassword.spec.tsx -------------------------------------------------------------------------------- /src/screens/ForgotPassword/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/ForgotPassword/ForgotPassword.tsx -------------------------------------------------------------------------------- /src/screens/FundCampaignPledge/FundCampaignPledge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/FundCampaignPledge/FundCampaignPledge.tsx -------------------------------------------------------------------------------- /src/screens/FundCampaignPledge/PledgesMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/FundCampaignPledge/PledgesMocks.ts -------------------------------------------------------------------------------- /src/screens/FundCampaignPledge/modal/PledgeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/FundCampaignPledge/modal/PledgeModal.tsx -------------------------------------------------------------------------------- /src/screens/Leaderboard/Leaderboard.mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Leaderboard/Leaderboard.mocks.ts -------------------------------------------------------------------------------- /src/screens/Leaderboard/Leaderboard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Leaderboard/Leaderboard.spec.tsx -------------------------------------------------------------------------------- /src/screens/Leaderboard/Leaderboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Leaderboard/Leaderboard.tsx -------------------------------------------------------------------------------- /src/screens/LoginPage/LoginPage.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/LoginPage/LoginPage.spec.tsx -------------------------------------------------------------------------------- /src/screens/LoginPage/LoginPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/LoginPage/LoginPage.tsx -------------------------------------------------------------------------------- /src/screens/ManageTag/ManageTag.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/ManageTag/ManageTag.spec.tsx -------------------------------------------------------------------------------- /src/screens/ManageTag/ManageTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/ManageTag/ManageTag.tsx -------------------------------------------------------------------------------- /src/screens/ManageTag/ManageTagMockUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/ManageTag/ManageTagMockUtils.ts -------------------------------------------------------------------------------- /src/screens/ManageTag/ManageTagMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/ManageTag/ManageTagMocks.ts -------------------------------------------------------------------------------- /src/screens/ManageTag/ManageTagNonErrorMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/ManageTag/ManageTagNonErrorMocks.ts -------------------------------------------------------------------------------- /src/screens/ManageTag/ManageTagNullFalsyMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/ManageTag/ManageTagNullFalsyMocks.ts -------------------------------------------------------------------------------- /src/screens/ManageTag/editModal/EditUserTagModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/ManageTag/editModal/EditUserTagModal.tsx -------------------------------------------------------------------------------- /src/screens/MemberDetail/MemberDetail.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/MemberDetail/MemberDetail.spec.tsx -------------------------------------------------------------------------------- /src/screens/MemberDetail/MemberDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/MemberDetail/MemberDetail.tsx -------------------------------------------------------------------------------- /src/screens/MemberDetail/MemberDetailMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/MemberDetail/MemberDetailMocks.ts -------------------------------------------------------------------------------- /src/screens/Notification/Notification.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Notification/Notification.module.css -------------------------------------------------------------------------------- /src/screens/Notification/Notification.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Notification/Notification.spec.tsx -------------------------------------------------------------------------------- /src/screens/Notification/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Notification/Notification.tsx -------------------------------------------------------------------------------- /src/screens/OrgContribution/OrgContribution.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgContribution/OrgContribution.spec.tsx -------------------------------------------------------------------------------- /src/screens/OrgContribution/OrgContribution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgContribution/OrgContribution.tsx -------------------------------------------------------------------------------- /src/screens/OrgList/OrgList.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgList/OrgList.spec.tsx -------------------------------------------------------------------------------- /src/screens/OrgList/OrgList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgList/OrgList.tsx -------------------------------------------------------------------------------- /src/screens/OrgList/OrgListMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgList/OrgListMocks.ts -------------------------------------------------------------------------------- /src/screens/OrgList/modal/OrganizationModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgList/modal/OrganizationModal.spec.tsx -------------------------------------------------------------------------------- /src/screens/OrgList/modal/OrganizationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgList/modal/OrganizationModal.tsx -------------------------------------------------------------------------------- /src/screens/OrgPost/OrgPost.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgPost/OrgPost.spec.tsx -------------------------------------------------------------------------------- /src/screens/OrgPost/OrgPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgPost/OrgPost.tsx -------------------------------------------------------------------------------- /src/screens/OrgPost/PinnedPostsStory.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgPost/PinnedPostsStory.spec.tsx -------------------------------------------------------------------------------- /src/screens/OrgPost/PinnedPostsStory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgPost/PinnedPostsStory.tsx -------------------------------------------------------------------------------- /src/screens/OrgPost/Posts.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgPost/Posts.spec.tsx -------------------------------------------------------------------------------- /src/screens/OrgPost/Posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgPost/Posts.tsx -------------------------------------------------------------------------------- /src/screens/OrgPost/postStyles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgPost/postStyles.module.css -------------------------------------------------------------------------------- /src/screens/OrgSettings/OrgSettings.mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgSettings/OrgSettings.mocks.ts -------------------------------------------------------------------------------- /src/screens/OrgSettings/OrgSettings.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgSettings/OrgSettings.spec.tsx -------------------------------------------------------------------------------- /src/screens/OrgSettings/OrgSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrgSettings/OrgSettings.tsx -------------------------------------------------------------------------------- /src/screens/OrganizationEvents/CreateEventModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrganizationEvents/CreateEventModal.tsx -------------------------------------------------------------------------------- /src/screens/OrganizationEvents/OrganizationEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrganizationEvents/OrganizationEvents.tsx -------------------------------------------------------------------------------- /src/screens/OrganizationFunds/OrganizationFunds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrganizationFunds/OrganizationFunds.tsx -------------------------------------------------------------------------------- /src/screens/OrganizationFunds/modal/FundModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrganizationFunds/modal/FundModal.spec.tsx -------------------------------------------------------------------------------- /src/screens/OrganizationFunds/modal/FundModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrganizationFunds/modal/FundModal.tsx -------------------------------------------------------------------------------- /src/screens/OrganizationPeople/OrganizationPeople.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrganizationPeople/OrganizationPeople.tsx -------------------------------------------------------------------------------- /src/screens/OrganizationPeople/addMember/AddMember.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrganizationPeople/addMember/AddMember.tsx -------------------------------------------------------------------------------- /src/screens/OrganizationTags/OrganizationTags.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrganizationTags/OrganizationTags.spec.tsx -------------------------------------------------------------------------------- /src/screens/OrganizationTags/OrganizationTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrganizationTags/OrganizationTags.tsx -------------------------------------------------------------------------------- /src/screens/OrganizationTags/OrganizationTagsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrganizationTags/OrganizationTagsMocks.ts -------------------------------------------------------------------------------- /src/screens/OrganizationVenues/OrganizationVenues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/OrganizationVenues/OrganizationVenues.tsx -------------------------------------------------------------------------------- /src/screens/PageNotFound/PageNotFound.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PageNotFound/PageNotFound.spec.tsx -------------------------------------------------------------------------------- /src/screens/PageNotFound/PageNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PageNotFound/PageNotFound.tsx -------------------------------------------------------------------------------- /src/screens/PluginStore/PluginModal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/PluginModal.module.css -------------------------------------------------------------------------------- /src/screens/PluginStore/PluginModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/PluginModal.spec.tsx -------------------------------------------------------------------------------- /src/screens/PluginStore/PluginModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/PluginModal.tsx -------------------------------------------------------------------------------- /src/screens/PluginStore/PluginStore.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/PluginStore.spec.tsx -------------------------------------------------------------------------------- /src/screens/PluginStore/PluginStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/PluginStore.tsx -------------------------------------------------------------------------------- /src/screens/PluginStore/UploadPluginModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/UploadPluginModal.spec.tsx -------------------------------------------------------------------------------- /src/screens/PluginStore/UploadPluginModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/UploadPluginModal.tsx -------------------------------------------------------------------------------- /src/screens/PluginStore/components/PluginCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/components/PluginCard.tsx -------------------------------------------------------------------------------- /src/screens/PluginStore/components/PluginList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/components/PluginList.tsx -------------------------------------------------------------------------------- /src/screens/PluginStore/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/components/index.ts -------------------------------------------------------------------------------- /src/screens/PluginStore/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/hooks/index.ts -------------------------------------------------------------------------------- /src/screens/PluginStore/hooks/useInstallTimer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/hooks/useInstallTimer.spec.ts -------------------------------------------------------------------------------- /src/screens/PluginStore/hooks/useInstallTimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/hooks/useInstallTimer.ts -------------------------------------------------------------------------------- /src/screens/PluginStore/hooks/usePluginActions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/hooks/usePluginActions.spec.ts -------------------------------------------------------------------------------- /src/screens/PluginStore/hooks/usePluginActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/hooks/usePluginActions.ts -------------------------------------------------------------------------------- /src/screens/PluginStore/hooks/usePluginFilters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/hooks/usePluginFilters.spec.ts -------------------------------------------------------------------------------- /src/screens/PluginStore/hooks/usePluginFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/PluginStore/hooks/usePluginFilters.ts -------------------------------------------------------------------------------- /src/screens/Public/Invitation/AcceptInvitation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Public/Invitation/AcceptInvitation.tsx -------------------------------------------------------------------------------- /src/screens/Requests/Requests.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Requests/Requests.spec.tsx -------------------------------------------------------------------------------- /src/screens/Requests/Requests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Requests/Requests.tsx -------------------------------------------------------------------------------- /src/screens/Requests/RequestsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Requests/RequestsMocks.ts -------------------------------------------------------------------------------- /src/screens/SubTags/SubTags.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/SubTags/SubTags.spec.tsx -------------------------------------------------------------------------------- /src/screens/SubTags/SubTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/SubTags/SubTags.tsx -------------------------------------------------------------------------------- /src/screens/SubTags/SubTagsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/SubTags/SubTagsMocks.ts -------------------------------------------------------------------------------- /src/screens/UserPortal/Campaigns/Campaigns.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Campaigns/Campaigns.spec.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Campaigns/Campaigns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Campaigns/Campaigns.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Campaigns/CampaignsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Campaigns/CampaignsMocks.ts -------------------------------------------------------------------------------- /src/screens/UserPortal/Campaigns/PledgeModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Campaigns/PledgeModal.spec.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Campaigns/PledgeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Campaigns/PledgeModal.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Chat/Chat.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Chat/Chat.module.css -------------------------------------------------------------------------------- /src/screens/UserPortal/Chat/Chat.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Chat/Chat.spec.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Chat/Chat.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Donate/Donate.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Donate/Donate.spec.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Donate/Donate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Donate/Donate.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Events/Events.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Events/Events.spec.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Events/Events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Events/Events.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Organizations/Organizations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Organizations/Organizations.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/People/People.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/People/People.spec.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/People/People.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/People/People.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Pledges/Pledge.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Pledges/Pledge.spec.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Pledges/Pledges.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Pledges/Pledges.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Pledges/PledgesMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Pledges/PledgesMocks.ts -------------------------------------------------------------------------------- /src/screens/UserPortal/Posts/PinnedPostCard.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Posts/PinnedPostCard.spec.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Posts/PinnedPostCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Posts/PinnedPostCard.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Posts/Posts.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Posts/Posts.module.css -------------------------------------------------------------------------------- /src/screens/UserPortal/Posts/Posts.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Posts/Posts.spec.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Posts/Posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Posts/Posts.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Settings/Settings.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Settings/Settings.spec.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Settings/Settings.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Settings/SettingsMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Settings/SettingsMocks.ts -------------------------------------------------------------------------------- /src/screens/UserPortal/Transactions/Transactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Transactions/Transactions.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/UserScreen/UserScreen.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/UserScreen/UserScreen.spec.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/UserScreen/UserScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/UserScreen/UserScreen.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Volunteer/Actions/Actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Volunteer/Actions/Actions.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx -------------------------------------------------------------------------------- /src/screens/UserPortal/Volunteer/Groups/Groups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/UserPortal/Volunteer/Groups/Groups.tsx -------------------------------------------------------------------------------- /src/screens/Users/Organization.mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Users/Organization.mocks.ts -------------------------------------------------------------------------------- /src/screens/Users/User.mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Users/User.mocks.ts -------------------------------------------------------------------------------- /src/screens/Users/Users.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Users/Users.spec.tsx -------------------------------------------------------------------------------- /src/screens/Users/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Users/Users.tsx -------------------------------------------------------------------------------- /src/screens/Users/UsersMocks.mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/screens/Users/UsersMocks.mocks.ts -------------------------------------------------------------------------------- /src/setup/askAndUpdatePort/askAndUpdatePort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/askAndUpdatePort/askAndUpdatePort.ts -------------------------------------------------------------------------------- /src/setup/askAndUpdatePort/askForUpdatePort.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/askAndUpdatePort/askForUpdatePort.spec.ts -------------------------------------------------------------------------------- /src/setup/askForCustomPort/askForCustomPort.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/askForCustomPort/askForCustomPort.spec.ts -------------------------------------------------------------------------------- /src/setup/askForCustomPort/askForCustomPort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/askForCustomPort/askForCustomPort.ts -------------------------------------------------------------------------------- /src/setup/askForDocker/askForDocker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/askForDocker/askForDocker.spec.ts -------------------------------------------------------------------------------- /src/setup/askForDocker/askForDocker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/askForDocker/askForDocker.ts -------------------------------------------------------------------------------- /src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts -------------------------------------------------------------------------------- /src/setup/backupEnvFile/backupEnvFile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/backupEnvFile/backupEnvFile.spec.ts -------------------------------------------------------------------------------- /src/setup/backupEnvFile/backupEnvFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/backupEnvFile/backupEnvFile.ts -------------------------------------------------------------------------------- /src/setup/checkConnection/checkConnection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/checkConnection/checkConnection.spec.ts -------------------------------------------------------------------------------- /src/setup/checkConnection/checkConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/checkConnection/checkConnection.ts -------------------------------------------------------------------------------- /src/setup/checkEnvFile/checkEnvFile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/checkEnvFile/checkEnvFile.spec.ts -------------------------------------------------------------------------------- /src/setup/checkEnvFile/checkEnvFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/checkEnvFile/checkEnvFile.ts -------------------------------------------------------------------------------- /src/setup/setup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/setup.spec.ts -------------------------------------------------------------------------------- /src/setup/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/setup.ts -------------------------------------------------------------------------------- /src/setup/updateEnvFile/updateEnvFile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/updateEnvFile/updateEnvFile.spec.ts -------------------------------------------------------------------------------- /src/setup/updateEnvFile/updateEnvFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/updateEnvFile/updateEnvFile.ts -------------------------------------------------------------------------------- /src/setup/validateRecaptcha/validateRecaptcha.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/validateRecaptcha/validateRecaptcha.spec.ts -------------------------------------------------------------------------------- /src/setup/validateRecaptcha/validateRecaptcha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setup/validateRecaptcha/validateRecaptcha.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/state/action-creators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/state/action-creators/index.ts -------------------------------------------------------------------------------- /src/state/helpers/Action.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/state/helpers/Action.spec.ts -------------------------------------------------------------------------------- /src/state/helpers/Action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/state/helpers/Action.ts -------------------------------------------------------------------------------- /src/state/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/state/hooks.ts -------------------------------------------------------------------------------- /src/state/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/state/reducers/index.ts -------------------------------------------------------------------------------- /src/state/reducers/routesReducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/state/reducers/routesReducer.spec.ts -------------------------------------------------------------------------------- /src/state/reducers/routesReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/state/reducers/routesReducer.ts -------------------------------------------------------------------------------- /src/state/reducers/userRoutersReducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/state/reducers/userRoutersReducer.spec.ts -------------------------------------------------------------------------------- /src/state/reducers/userRoutesReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/state/reducers/userRoutesReducer.ts -------------------------------------------------------------------------------- /src/state/store.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/state/store.spec.tsx -------------------------------------------------------------------------------- /src/state/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/state/store.ts -------------------------------------------------------------------------------- /src/style/app-fixed.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/style/app-fixed.module.css -------------------------------------------------------------------------------- /src/subComponents/SearchBar.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/subComponents/SearchBar.spec.tsx -------------------------------------------------------------------------------- /src/subComponents/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/subComponents/SearchBar.tsx -------------------------------------------------------------------------------- /src/subComponents/SearchingButton.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/subComponents/SearchingButton.spec.tsx -------------------------------------------------------------------------------- /src/subComponents/SearchingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/subComponents/SearchingButton.tsx -------------------------------------------------------------------------------- /src/subComponents/SortingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/subComponents/SortingButton.tsx -------------------------------------------------------------------------------- /src/test-utils/mocks/react-bootstrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/test-utils/mocks/react-bootstrap.tsx -------------------------------------------------------------------------------- /src/test-utils/mocks/react-bootstrap/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/test-utils/mocks/react-bootstrap/Dropdown.tsx -------------------------------------------------------------------------------- /src/test-utils/mocks/react-bootstrap/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/test-utils/mocks/react-bootstrap/types.ts -------------------------------------------------------------------------------- /src/types/ActionItems/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/ActionItems/interface.ts -------------------------------------------------------------------------------- /src/types/Advertisement/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Advertisement/interface.ts -------------------------------------------------------------------------------- /src/types/Advertisement/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Advertisement/type.ts -------------------------------------------------------------------------------- /src/types/Agenda/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Agenda/interface.ts -------------------------------------------------------------------------------- /src/types/Agenda/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Agenda/type.ts -------------------------------------------------------------------------------- /src/types/Avatar/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Avatar/interface.ts -------------------------------------------------------------------------------- /src/types/Chat/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Chat/interface.ts -------------------------------------------------------------------------------- /src/types/Chat/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Chat/type.ts -------------------------------------------------------------------------------- /src/types/CheckIn/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/CheckIn/interface.ts -------------------------------------------------------------------------------- /src/types/CheckIn/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/CheckIn/type.ts -------------------------------------------------------------------------------- /src/types/Comment/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Comment/type.ts -------------------------------------------------------------------------------- /src/types/Contribution/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Contribution/interface.ts -------------------------------------------------------------------------------- /src/types/Donation/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Donation/interface.ts -------------------------------------------------------------------------------- /src/types/DropDown/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/DropDown/interface.ts -------------------------------------------------------------------------------- /src/types/Event/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Event/interface.ts -------------------------------------------------------------------------------- /src/types/Event/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Event/type.ts -------------------------------------------------------------------------------- /src/types/Event/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Event/utils.ts -------------------------------------------------------------------------------- /src/types/Member/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Member/interface.ts -------------------------------------------------------------------------------- /src/types/Organization/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Organization/interface.ts -------------------------------------------------------------------------------- /src/types/Organization/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Organization/type.ts -------------------------------------------------------------------------------- /src/types/Post/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Post/interface.ts -------------------------------------------------------------------------------- /src/types/Post/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Post/type.ts -------------------------------------------------------------------------------- /src/types/Tag/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Tag/interface.ts -------------------------------------------------------------------------------- /src/types/Tag/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Tag/utils.ts -------------------------------------------------------------------------------- /src/types/User/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/User/interface.ts -------------------------------------------------------------------------------- /src/types/User/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/User/type.ts -------------------------------------------------------------------------------- /src/types/Volunteer/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/Volunteer/interface.ts -------------------------------------------------------------------------------- /src/types/actionItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/actionItem.ts -------------------------------------------------------------------------------- /src/types/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/address.ts -------------------------------------------------------------------------------- /src/types/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/jsx.d.ts -------------------------------------------------------------------------------- /src/types/membership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/membership.ts -------------------------------------------------------------------------------- /src/types/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/pagination.ts -------------------------------------------------------------------------------- /src/types/venue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/types/venue.ts -------------------------------------------------------------------------------- /src/utils/MinioDownload.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/MinioDownload.spec.ts -------------------------------------------------------------------------------- /src/utils/MinioDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/MinioDownload.ts -------------------------------------------------------------------------------- /src/utils/MinioUpload.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/MinioUpload.spec.tsx -------------------------------------------------------------------------------- /src/utils/MinioUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/MinioUpload.ts -------------------------------------------------------------------------------- /src/utils/StaticMockLink.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/StaticMockLink.spec.ts -------------------------------------------------------------------------------- /src/utils/StaticMockLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/StaticMockLink.ts -------------------------------------------------------------------------------- /src/utils/adminPluginInstaller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/adminPluginInstaller.spec.ts -------------------------------------------------------------------------------- /src/utils/adminPluginInstaller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/adminPluginInstaller.ts -------------------------------------------------------------------------------- /src/utils/chartToPdf.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/chartToPdf.spec.ts -------------------------------------------------------------------------------- /src/utils/chartToPdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/chartToPdf.ts -------------------------------------------------------------------------------- /src/utils/convertToBase64.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/convertToBase64.spec.ts -------------------------------------------------------------------------------- /src/utils/convertToBase64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/convertToBase64.ts -------------------------------------------------------------------------------- /src/utils/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/currency.ts -------------------------------------------------------------------------------- /src/utils/dateFormatter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/dateFormatter.spec.ts -------------------------------------------------------------------------------- /src/utils/dateFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/dateFormatter.ts -------------------------------------------------------------------------------- /src/utils/errorHandler.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/errorHandler.spec.tsx -------------------------------------------------------------------------------- /src/utils/errorHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/errorHandler.tsx -------------------------------------------------------------------------------- /src/utils/fieldTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/fieldTypes.ts -------------------------------------------------------------------------------- /src/utils/fileValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/fileValidation.ts -------------------------------------------------------------------------------- /src/utils/filehash.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/filehash.spec.ts -------------------------------------------------------------------------------- /src/utils/filehash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/filehash.ts -------------------------------------------------------------------------------- /src/utils/formEnumFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/formEnumFields.ts -------------------------------------------------------------------------------- /src/utils/getRefreshToken.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/getRefreshToken.spec.ts -------------------------------------------------------------------------------- /src/utils/getRefreshToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/getRefreshToken.ts -------------------------------------------------------------------------------- /src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/i18n.ts -------------------------------------------------------------------------------- /src/utils/i18nForTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/i18nForTest.ts -------------------------------------------------------------------------------- /src/utils/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/interfaces.ts -------------------------------------------------------------------------------- /src/utils/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/languages.ts -------------------------------------------------------------------------------- /src/utils/linkValid.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/linkValid.spec.tsx -------------------------------------------------------------------------------- /src/utils/linkValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/linkValidator.ts -------------------------------------------------------------------------------- /src/utils/organizationTagsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/organizationTagsUtils.ts -------------------------------------------------------------------------------- /src/utils/passwordValidator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/passwordValidator.spec.ts -------------------------------------------------------------------------------- /src/utils/passwordValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/passwordValidator.ts -------------------------------------------------------------------------------- /src/utils/recurrenceUtils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/recurrenceUtils/index.ts -------------------------------------------------------------------------------- /src/utils/recurrenceUtils/recurrenceConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/recurrenceUtils/recurrenceConstants.ts -------------------------------------------------------------------------------- /src/utils/recurrenceUtils/recurrenceTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/recurrenceUtils/recurrenceTypes.ts -------------------------------------------------------------------------------- /src/utils/recurrenceUtils/recurrenceUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/recurrenceUtils/recurrenceUtils.spec.ts -------------------------------------------------------------------------------- /src/utils/sanitizeAvatar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/sanitizeAvatar.spec.ts -------------------------------------------------------------------------------- /src/utils/sanitizeAvatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/sanitizeAvatar.ts -------------------------------------------------------------------------------- /src/utils/timezoneUtils/dateTimeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/timezoneUtils/dateTimeConfig.ts -------------------------------------------------------------------------------- /src/utils/timezoneUtils/dateTimeMiddleware.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/timezoneUtils/dateTimeMiddleware.spec.ts -------------------------------------------------------------------------------- /src/utils/timezoneUtils/dateTimeMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/timezoneUtils/dateTimeMiddleware.ts -------------------------------------------------------------------------------- /src/utils/timezoneUtils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/timezoneUtils/index.ts -------------------------------------------------------------------------------- /src/utils/urlToFile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/urlToFile.spec.ts -------------------------------------------------------------------------------- /src/utils/urlToFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/urlToFile.ts -------------------------------------------------------------------------------- /src/utils/useLocalstorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/useLocalstorage.spec.ts -------------------------------------------------------------------------------- /src/utils/useLocalstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/useLocalstorage.ts -------------------------------------------------------------------------------- /src/utils/useSession.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/useSession.spec.tsx -------------------------------------------------------------------------------- /src/utils/useSession.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/utils/useSession.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tsconfig.docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/tsconfig.docs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/typedoc.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vitest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PalisadoesFoundation/talawa-admin/HEAD/vitest.setup.ts --------------------------------------------------------------------------------