From 54afeff360bfa12e517b56940977b4957708d43c Mon Sep 17 00:00:00 2001 From: meetul Date: Tue, 30 Jan 2024 17:23:40 +0530 Subject: [PATCH 01/14] add mutations and queries --- public/locales/en.json | 10 +- .../Mutations/ActionItemCategoryMutations.ts | 49 ++++ src/GraphQl/Mutations/mutations.ts | 4 + .../Queries/ActionItemCategoryQueries.ts | 18 ++ src/GraphQl/Queries/Queries.ts | 3 + src/components/DeleteOrg/DeleteOrg.tsx | 2 +- .../OrgActionItemCategories.module.css | 34 +++ .../OrgActionItemCategories.tsx | 269 ++++++++++++++++++ .../OrgSettings/OrgSettings.module.css | 13 +- src/screens/OrgSettings/OrgSettings.tsx | 137 ++++++--- src/utils/interfaces.ts | 10 + 11 files changed, 505 insertions(+), 44 deletions(-) create mode 100644 src/GraphQl/Mutations/ActionItemCategoryMutations.ts create mode 100644 src/GraphQl/Queries/ActionItemCategoryQueries.ts create mode 100644 src/components/OrgActionItemCategories/OrgActionItemCategories.module.css create mode 100644 src/components/OrgActionItemCategories/OrgActionItemCategories.tsx diff --git a/public/locales/en.json b/public/locales/en.json index 06006a0052..563d11ab81 100644 --- a/public/locales/en.json +++ b/public/locales/en.json @@ -452,7 +452,8 @@ "noData": "No data", "otherSettings": "Other Settings", "changeLanguage": "Change Language", - "manageCustomFields": "Manage Custom Fields" + "manageCustomFields": "Manage Custom Fields", + "actionItemCategories": "Action Item Categories" }, "deleteOrg": { "deleteOrganization": "Delete Organization", @@ -739,5 +740,12 @@ "Remove Custom Field": "Remove Custom Field", "fieldSuccessMessage": "Field added successfully", "fieldRemovalSuccess": "Field removed successfully" + }, + "orgActionItemCategories": { + "addActionItemCategory": "Create", + "updateActionItemCategory": "Update", + "actionItemCategoryName": "Name", + "actionItemCategoryDetails": "Action Item Category Details", + "enterName": "Enter Name" } } diff --git a/src/GraphQl/Mutations/ActionItemCategoryMutations.ts b/src/GraphQl/Mutations/ActionItemCategoryMutations.ts new file mode 100644 index 0000000000..2b3f97fce0 --- /dev/null +++ b/src/GraphQl/Mutations/ActionItemCategoryMutations.ts @@ -0,0 +1,49 @@ +import gql from 'graphql-tag'; + +/** + * GraphQL mutation to create an action item category. + * + * @param name - Name of the ActionItemCategory. + * @param organizationId - Organization to which the ActionItemCategory belongs. + */ + +export const CREATE_ACTION_ITEM_CATEGORY_MUTATION = gql` + mutation CreateActionItemCategory($name: String!, $organizationId: ID!) { + createActionItemCategory(name: $name, organizationId: $organizationId) { + _id + name + organization { + _id + } + isDisabled + } + } +`; + +/** + * GraphQL mutation to update an action item category. + * + * @param actionItemCategoryId - The id of the ActionItemCategory to be updated. + * @param name - Updated name of the ActionItemCategory. + * @param isDisabled - Updated disabled status of the ActionItemCategory. + */ + +export const UPDATE_ACTION_ITEM_CATEGORY_MUTATION = gql` + mutation UpdateActionItemCategory( + $actionItemCategoryId: ID! + $name: String + $isDisabled: Boolean + ) { + updateActionItemCategory( + id: $actionItemCategoryId + data: { name: $name, isDisabled: $isDisabled } + ) { + _id + name + organization { + _id + } + isDisabled + } + } +`; diff --git a/src/GraphQl/Mutations/mutations.ts b/src/GraphQl/Mutations/mutations.ts index 0d70d585eb..546f32c83c 100644 --- a/src/GraphQl/Mutations/mutations.ts +++ b/src/GraphQl/Mutations/mutations.ts @@ -573,6 +573,10 @@ export const REGISTER_EVENT = gql` } `; +// Create and Update an ActionItemCategory +export { CREATE_ACTION_ITEM_CATEGORY_MUTATION } from './ActionItemCategoryMutations'; +export { UPDATE_ACTION_ITEM_CATEGORY_MUTATION } from './ActionItemCategoryMutations'; + // Changes the role of a event in an organization and add and remove the event from the organization export { ADD_EVENT_ATTENDEE } from './EventAttendeeMutations'; export { REMOVE_EVENT_ATTENDEE } from './EventAttendeeMutations'; diff --git a/src/GraphQl/Queries/ActionItemCategoryQueries.ts b/src/GraphQl/Queries/ActionItemCategoryQueries.ts new file mode 100644 index 0000000000..f612014022 --- /dev/null +++ b/src/GraphQl/Queries/ActionItemCategoryQueries.ts @@ -0,0 +1,18 @@ +import gql from 'graphql-tag'; + +/** + * GraphQL query to retrieve action item categories by organization. + * + * @param id - The ID of the organization for which action item categories are being retrieved. + * @returns The list of action item categories associated with the organization. + */ + +export const ACTION_ITEM_CATEGORY_LIST = gql` + query ActionItemCategoriesByOrganization($organizationId: ID!) { + actionItemCategoriesByOrganization(organizationId: $organizationId) { + _id + name + isDisabled + } + } +`; diff --git a/src/GraphQl/Queries/Queries.ts b/src/GraphQl/Queries/Queries.ts index 8c18ebf93b..79366f6057 100644 --- a/src/GraphQl/Queries/Queries.ts +++ b/src/GraphQl/Queries/Queries.ts @@ -581,6 +581,9 @@ export const MEMBERSHIP_REQUEST = gql` } `; +// get the list of action item categories for an organization +export { ACTION_ITEM_CATEGORY_LIST } from './ActionItemCategoryQueries'; + // to take the list of the blocked users export { PLUGIN_GET } from './PlugInQueries'; export { ADVERTISEMENTS_GET } from './PlugInQueries'; diff --git a/src/components/DeleteOrg/DeleteOrg.tsx b/src/components/DeleteOrg/DeleteOrg.tsx index 575f870f18..f33b38bd25 100644 --- a/src/components/DeleteOrg/DeleteOrg.tsx +++ b/src/components/DeleteOrg/DeleteOrg.tsx @@ -60,7 +60,7 @@ function deleteOrg(): JSX.Element { return ( <> {canDelete && ( - +
{t('deleteOrganization')}
diff --git a/src/components/OrgActionItemCategories/OrgActionItemCategories.module.css b/src/components/OrgActionItemCategories/OrgActionItemCategories.module.css new file mode 100644 index 0000000000..d3aa11911c --- /dev/null +++ b/src/components/OrgActionItemCategories/OrgActionItemCategories.module.css @@ -0,0 +1,34 @@ +.addButton { + width: 7em; + position: absolute; + right: 1rem; + top: 1rem; +} + +.createModal { + margin-top: 20vh; + margin-left: 13vw; + max-width: 80vw; +} + +.icon { + transform: scale(1.5); + color: var(--bs-danger); + margin-bottom: 1rem; +} + +.message { + height: 420px; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; +} + +.titlemodal { + color: #707070; + font-weight: 600; + font-size: 20px; + margin-top: 1rem; + width: 65%; +} diff --git a/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx b/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx new file mode 100644 index 0000000000..ba070306f4 --- /dev/null +++ b/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx @@ -0,0 +1,269 @@ +import type { ChangeEvent } from 'react'; +import React, { useState } from 'react'; +import { Button, Form, Modal } from 'react-bootstrap'; +import styles from './OrgActionItemCategories.module.css'; +import { useTranslation } from 'react-i18next'; + +import { useMutation, useQuery } from '@apollo/client'; +import { + CREATE_ACTION_ITEM_CATEGORY_MUTATION, + UPDATE_ACTION_ITEM_CATEGORY_MUTATION, +} from 'GraphQl/Mutations/mutations'; +import { toast } from 'react-toastify'; +import type { InterfaceActionItemCategoryList } from 'utils/interfaces'; +import { ACTION_ITEM_CATEGORY_LIST } from 'GraphQl/Queries/ActionItemCategoryQueries'; +import Loader from 'components/Loader/Loader'; +import { WarningAmberRounded } from '@mui/icons-material'; + +type ModalType = 'Create' | 'Update'; + +const OrgActionItemCategories = (): any => { + const { t } = useTranslation('translation', { + keyPrefix: 'orgActionItemCategories', + }); + + const [addModalIsOpen, setAddModalIsOpen] = useState(false); + const [modalType, setModalType] = useState('Create'); + const [categoryId, setCategoryId] = useState(''); + + const [name, setName] = useState(''); + + const currentUrl = window.location.href.split('=')[1]; + + const { + data, + loading, + error, + refetch, + }: { + data: InterfaceActionItemCategoryList | undefined; + loading: boolean; + error?: Error | undefined; + refetch: any; + } = useQuery(ACTION_ITEM_CATEGORY_LIST, { + variables: { + organizationId: currentUrl, + }, + notifyOnNetworkStatusChange: true, + }); + + const [createActionItemCategory] = useMutation( + CREATE_ACTION_ITEM_CATEGORY_MUTATION + ); + + const [updateActionItemCategory] = useMutation( + UPDATE_ACTION_ITEM_CATEGORY_MUTATION + ); + + const handleCreate = async ( + e: ChangeEvent + ): Promise => { + e.preventDefault(); + try { + const { data } = await createActionItemCategory({ + variables: { + name, + organizationId: currentUrl, + }, + }); + + setName(''); + refetch(); + + setAddModalIsOpen(false); + + toast.success('Action Item Category created successfully'); + console.log(data); + } catch (error: any) { + toast.error(error.message); + console.log(error); + } + }; + + const handleEdit = async (e: ChangeEvent): Promise => { + e.preventDefault(); + try { + await updateActionItemCategory({ + variables: { + actionItemCategoryId: categoryId, + name, + }, + }); + + setName(''); + setCategoryId(''); + refetch(); + + setAddModalIsOpen(false); + + toast.success('Action Item Category updated successfully'); + } catch (error: any) { + toast.error(error.message); + console.log(error); + } + }; + + const handleDisableStatus = async ( + id: string, + disabledStatus: boolean + ): Promise => { + try { + await updateActionItemCategory({ + variables: { + actionItemCategoryId: id, + isDisabled: !disabledStatus, + }, + }); + + refetch(); + + toast.success( + `Action Item Category ${ + disabledStatus === true ? 'Enabled' : 'Disabled' + }` + ); + } catch (error: any) { + toast.error(error.message); + console.log(error); + } + }; + + const showCreateModal = (): void => { + setModalType('Create'); + setAddModalIsOpen(true); + }; + + const showUpdateModal = (name: string, id: string): void => { + setName(name); + setCategoryId(id); + setModalType('Update'); + setAddModalIsOpen(true); + }; + + const hideModal = (): void => { + setName(''); + setCategoryId(''); + setAddModalIsOpen(false); + }; + + if (loading) { + return ; + } + + if (error) { + return ( +
+ +
+ Error occured while loading Action Item Categories Data +
+ {`${error.message}`} +
+
+ ); + } + + return ( + <> + + +
+ {data?.actionItemCategoriesByOrganization.map((category, index) => { + return ( +
+
+
{category.name}
+
+ + +
+
+ + {index !== data.actionItemCategoriesByOrganization.length - 1 && ( +
+ )} +
+ ); + })} +
+ + + +

+ {t('actionItemCategoryDetails')} +

+ +
+ +
+ + {t('actionItemCategoryName')} + + { + setName(e.target.value); + }} + /> + + +
+
+ + ); +}; + +export default OrgActionItemCategories; diff --git a/src/screens/OrgSettings/OrgSettings.module.css b/src/screens/OrgSettings/OrgSettings.module.css index 2b15a2ac0c..aa21f6dab2 100644 --- a/src/screens/OrgSettings/OrgSettings.module.css +++ b/src/screens/OrgSettings/OrgSettings.module.css @@ -1,5 +1,10 @@ +.settingsContainer { + min-height: 100vh; +} + .settingsBody { - margin: 2.5rem 0; + min-height: 100vh; + margin: 2.5rem 1rem; } .cardHeader { @@ -23,3 +28,9 @@ margin: 0 0 3rem 0; color: var(--bs-secondary); } + +hr { + border: none; + height: 1px; + background-color: var(--bs-gray-500); +} diff --git a/src/screens/OrgSettings/OrgSettings.tsx b/src/screens/OrgSettings/OrgSettings.tsx index 9509719d5f..d159b645e2 100644 --- a/src/screens/OrgSettings/OrgSettings.tsx +++ b/src/screens/OrgSettings/OrgSettings.tsx @@ -1,68 +1,123 @@ -import React from 'react'; +import React, { useState } from 'react'; import ChangeLanguageDropDown from 'components/ChangeLanguageDropdown/ChangeLanguageDropDown'; import DeleteOrg from 'components/DeleteOrg/DeleteOrg'; import OrgUpdate from 'components/OrgUpdate/OrgUpdate'; import OrganizationScreen from 'components/OrganizationScreen/OrganizationScreen'; -import { Card, Form } from 'react-bootstrap'; +import { Button, Card, Form } from 'react-bootstrap'; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; import { useTranslation } from 'react-i18next'; import styles from './OrgSettings.module.css'; import OrgProfileFieldSettings from 'components/OrgProfileFieldSettings/OrgProfileFieldSettings'; +import OrgActionItemCategories from 'components/OrgActionItemCategories/OrgActionItemCategories'; + +type SettingType = 'General' | 'ActionItemCategories'; function orgSettings(): JSX.Element { const { t } = useTranslation('translation', { keyPrefix: 'orgSettings', }); + const [setting, setSetting] = useState('General'); + document.title = t('title'); const orgId = window.location.href.split('=')[1]; return ( <> - - - -
-
- {t('updateOrganization')} +
+ + + + + + + +
+
+
+ + {setting === 'General' && ( + + + +
+
+ {t('updateOrganization')} +
+
+ + {orgId && } + +
+ + + + +
+
{t('otherSettings')}
+
+ +
+ + {t('changeLanguage')} + + +
+
+
+ + + +
+
+ {t('manageCustomFields')} +
+
+ + {orgId && } + +
+ +
+ )} + + {setting === 'ActionItemCategories' && ( + +
+
+ {t('actionItemCategories')}
- - {orgId && } - - - - - - -
-
{t('otherSettings')}
-
- -
- - {t('changeLanguage')} - - -
-
-
- - - -
-
- {t('manageCustomFields')} -
+
+ {orgId && }
- - {orgId && } - - - - + + )} +
); diff --git a/src/utils/interfaces.ts b/src/utils/interfaces.ts index efcca55ca8..8ab012c281 100644 --- a/src/utils/interfaces.ts +++ b/src/utils/interfaces.ts @@ -13,6 +13,16 @@ export interface InterfaceUserType { }; } +export interface InterfaceActionItemCategoryInfo { + _id: string; + name: string; + isDisabled: boolean; +} + +export interface InterfaceActionItemCategoryList { + actionItemCategoriesByOrganization: InterfaceActionItemCategoryInfo[]; +} + export interface InterfaceOrgConnectionInfoType { _id: string; image: string | null; From 82491b05e11780a404b156ad3688e8906484155a Mon Sep 17 00:00:00 2001 From: meetul Date: Wed, 31 Jan 2024 10:06:17 +0530 Subject: [PATCH 02/14] add translations --- public/locales/en.json | 14 +++- public/locales/fr.json | 20 +++++- public/locales/hi.json | 20 +++++- public/locales/sp.json | 20 +++++- public/locales/zh.json | 20 +++++- .../Mutations/ActionItemCategoryMutations.ts | 10 --- .../OrgActionItemCategories.module.css | 1 - .../OrgActionItemCategories.tsx | 69 +++++++++++-------- src/screens/OrgSettings/OrgSettings.tsx | 4 +- 9 files changed, 131 insertions(+), 47 deletions(-) diff --git a/public/locales/en.json b/public/locales/en.json index 563d11ab81..e07dd8d664 100644 --- a/public/locales/en.json +++ b/public/locales/en.json @@ -446,6 +446,8 @@ "orgSettings": { "title": "Talawa Setting", "pageName": "Settings", + "generalSettings": "General", + "actionItemCategorySettings": "Action Item Categories", "updateOrganization": "Update Organization", "seeRequest": "See Request", "settings": "Settings", @@ -742,10 +744,18 @@ "fieldRemovalSuccess": "Field removed successfully" }, "orgActionItemCategories": { - "addActionItemCategory": "Create", + "createButton": "Create", + "editButton": "Edit", + "enableButton": "Enable", + "disableButton": "Disable", "updateActionItemCategory": "Update", "actionItemCategoryName": "Name", "actionItemCategoryDetails": "Action Item Category Details", - "enterName": "Enter Name" + "enterName": "Enter Name", + "successfulCreation": "Action Item Category created successfully", + "successfulUpdation": "Action Item Category updated successfully", + "sameNameConflict": "Please change the name to make an update", + "categoryEnabled": "Action Item Category Enabled", + "categoryDisabled": "Action Item Category Disabled" } } diff --git a/public/locales/fr.json b/public/locales/fr.json index b9862b6912..63262db200 100644 --- a/public/locales/fr.json +++ b/public/locales/fr.json @@ -441,6 +441,8 @@ "orgSettings": { "title": "Paramètre Talawa", "pageName": "Paramètres", + "generalSettings": "Général", + "actionItemCategorySettings": "Catégories d’éléments d’action", "updateYourDetails": "Mettre à jour vos informations", "updateYourPassword": "Mettez à jour votre mot de passe", "updateOrganization": "Mettre à jour l'organisation", @@ -449,7 +451,8 @@ "noData": "Pas de données", "otherSettings": "Autres paramètres", "changeLanguage": "Changer la langue", - "manageCustomFields": "Gérer les Champs Personnalisés" + "manageCustomFields": "Gérer les Champs Personnalisés", + "actionItemCategories": "Catégories d’éléments d’action" }, "deleteOrg": { "deleteOrganization": "Supprimer l'organisation", @@ -724,5 +727,20 @@ "Supprimer le champ personnalisé": "Supprimer le champ personnalisé", "fieldSuccessMessage": "Champ ajouté avec succès", "fieldRemovalSuccess": "Champ supprimé avec succès" + }, + "orgActionItemCategories": { + "createButton": "Créez", + "editButton": "Éditez", + "enableButton": "Activez", + "disableButton": "Désactivez", + "updateActionItemCategory": "Mettre à jour", + "actionItemCategoryName": "Nom", + "actionItemCategoryDetails": "Détails de la catégorie d’élément d’action", + "enterName": "Entrez le nom", + "successfulCreation": "Catégorie d’élément d’action créée avec succès", + "successfulUpdation": "La catégorie d’élément d’action a été mise à jour avec succès", + "sameNameConflict": "Veuillez modifier le nom pour effectuer une mise à jour", + "categoryEnabled": "Catégorie d’action activée", + "categoryDisabled": "Catégorie d’action désactivée" } } diff --git a/public/locales/hi.json b/public/locales/hi.json index 7db22caa28..1a7cb368d6 100644 --- a/public/locales/hi.json +++ b/public/locales/hi.json @@ -441,6 +441,8 @@ "orgSettings": { "title": "तलावा सेटिंग", "pageName": "सेटिंग्स", + "generalSettings": "सामान्य", + "actionItemCategorySettings": "कार्रवाई आइटम श्रेणियाँ", "updateYourDetails": "अपना विवरण अपडेट करें", "updateYourPassword": "अपना पासवर्ड अपडेट करें", "updateOrganization": "अद्यतन संगठन", @@ -449,7 +451,8 @@ "noData": "कोई डेटा नहीं", "otherSettings": "अन्य सेटिंग्स", "changeLanguage": "भाषा बदलें", - "manageCustomFields": "कस्टम फ़ील्ड प्रबंधन करें" + "manageCustomFields": "कस्टम फ़ील्ड प्रबंधन करें", + "actionItemCategories": "कार्रवाई आइटम श्रेणियाँ" }, "deleteOrg": { "deleteOrganization": "संगठन हटाएं", @@ -725,5 +728,20 @@ "Remove Custom Field": "कस्टम फ़ील्ड हटाएँ", "fieldSuccessMessage": "फ़ील्ड सफलतापूर्वक जोड़ा गया", "fieldRemovalSuccess": "फ़ील्ड सफलतापूर्वक हटा दिया गया" + }, + "orgActionItemCategories": { + "createButton": "बनाएं", + "editButton": "संपादित करें", + "enableButton": "सक्षम करें", + "disableButton": "अक्षम करें", + "updateActionItemCategory": "अद्यतन करें", + "actionItemCategoryName": "नाम", + "actionItemCategoryDetails": "कार्रवाई आइटम श्रेणी विवरण", + "enterName": "नाम दर्ज करें", + "successfulCreation": "कार्रवाई आइटम श्रेणी सफलतापूर्वक बनाई गई", + "successfulUpdation": "क्रिया आइटम श्रेणी सफलतापूर्वक अद्यतन की गई", + "sameNameConflict": "अपडेट करने के लिए कृपया नाम बदलें", + "categoryEnabled": "कार्रवाई आइटम श्रेणी सक्षम", + "categoryDisabled": "क्रिया आइटम श्रेणी अक्षम की गई" } } diff --git a/public/locales/sp.json b/public/locales/sp.json index 76138e8045..9f87d93bd4 100644 --- a/public/locales/sp.json +++ b/public/locales/sp.json @@ -440,6 +440,8 @@ "orgSettings": { "title": "Configuración Talawa", "pageName": "Configuración", + "generalSettings": "General", + "actionItemCategorySettings": "Categorías de elementos de acción", "updateYourDetails": "Actualiza tus datos", "updateYourPassword": "Actualice su contraseña", "updateOrganization": "Actualizar Organización", @@ -448,7 +450,8 @@ "noData": "Sin datos", "otherSettings": "Otras Configuraciones", "changeLanguage": "Cambiar Idioma", - "manageCustomFields": "Gestionar Campos Personalizados" + "manageCustomFields": "Gestionar Campos Personalizados", + "actionItemCategories": "Categorías de elementos de acción" }, "deleteOrg": { "deleteOrganization": "Eliminar organización", @@ -724,5 +727,20 @@ "Remove Custom Field": "Eliminar Campo Personalizado", "fieldSuccessMessage": "Campo añadido exitosamente", "fieldRemovalSuccess": "Campo eliminado exitosamente" + }, + "orgActionItemCategories": { + "createButton": "Crear", + "editButton": "Editar", + "enableButton": "Habilitar", + "disableButton": "Inhabilitar", + "updateActionItemCategory": "Actualizar", + "actionItemCategoryName": "Nombre", + "actionItemCategoryDetails": "Detalles de la categoría de elemento de acción", + "enterName": "Introduzca el nombre", + "successfulCreation": "Categoría de elemento de acción creada correctamente", + "successfulUpdation": "Categoría de elemento de acción actualizada correctamente", + "sameNameConflict": "Cambie el nombre para realizar una actualización", + "categoryEnabled": "Categoría de elemento de acción habilitada", + "categoryDisabled": "Categoría de elemento de acción deshabilitada" } } diff --git a/public/locales/zh.json b/public/locales/zh.json index 8c1337c0de..b4e996a8c0 100644 --- a/public/locales/zh.json +++ b/public/locales/zh.json @@ -441,6 +441,8 @@ "orgSettings": { "title": "塔拉瓦設置", "pageName": "设置", + "generalSettings": "一般", + "actionItemCategorySettings": "措施项类别", "updateYourDetails": "更新您的詳細信息", "updateYourPassword": "更新您的密碼", "updateOrganization": "更新組織", @@ -449,7 +451,8 @@ "noData": "沒有數據", "otherSettings": "其他设置", "changeLanguage": "更改语言", - "manageCustomFields": "管理自定义字段" + "manageCustomFields": "管理自定义字段", + "actionItemCategories": "措施项类别" }, "deleteOrg": { "deleteOrganization": "删除组织", @@ -725,5 +728,20 @@ "删除自定义字段": "删除自定义字段", "fieldSuccessMessage": "字段添加成功", "fieldRemovalSuccess": "字段删除成功" + }, + "orgActionItemCategories": { + "createButton": "创建", + "editButton": "编辑", + "enableButton": "启用", + "disableButton": "禁用", + "updateActionItemCategory": "更新", + "actionItemCategoryName": "名称", + "actionItemCategoryDetails": "措施项类别详细信息", + "enterName": "输入名称", + "successfulCreation": "已成功创建措施项类别", + "successfulUpdation": "措施项类别已成功更新", + "sameNameConflict": "请更改名称以进行更新", + "categoryEnabled": "已启用措施项类别", + "categoryDisabled": "措施项类别已禁用" } } diff --git a/src/GraphQl/Mutations/ActionItemCategoryMutations.ts b/src/GraphQl/Mutations/ActionItemCategoryMutations.ts index 2b3f97fce0..62abe181fd 100644 --- a/src/GraphQl/Mutations/ActionItemCategoryMutations.ts +++ b/src/GraphQl/Mutations/ActionItemCategoryMutations.ts @@ -11,11 +11,6 @@ export const CREATE_ACTION_ITEM_CATEGORY_MUTATION = gql` mutation CreateActionItemCategory($name: String!, $organizationId: ID!) { createActionItemCategory(name: $name, organizationId: $organizationId) { _id - name - organization { - _id - } - isDisabled } } `; @@ -39,11 +34,6 @@ export const UPDATE_ACTION_ITEM_CATEGORY_MUTATION = gql` data: { name: $name, isDisabled: $isDisabled } ) { _id - name - organization { - _id - } - isDisabled } } `; diff --git a/src/components/OrgActionItemCategories/OrgActionItemCategories.module.css b/src/components/OrgActionItemCategories/OrgActionItemCategories.module.css index d3aa11911c..93c2babd0f 100644 --- a/src/components/OrgActionItemCategories/OrgActionItemCategories.module.css +++ b/src/components/OrgActionItemCategories/OrgActionItemCategories.module.css @@ -18,7 +18,6 @@ } .message { - height: 420px; display: flex; justify-content: center; align-items: center; diff --git a/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx b/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx index ba070306f4..e6f72e5924 100644 --- a/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx +++ b/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx @@ -3,17 +3,17 @@ import React, { useState } from 'react'; import { Button, Form, Modal } from 'react-bootstrap'; import styles from './OrgActionItemCategories.module.css'; import { useTranslation } from 'react-i18next'; +import { toast } from 'react-toastify'; +import { WarningAmberRounded } from '@mui/icons-material'; import { useMutation, useQuery } from '@apollo/client'; import { CREATE_ACTION_ITEM_CATEGORY_MUTATION, UPDATE_ACTION_ITEM_CATEGORY_MUTATION, } from 'GraphQl/Mutations/mutations'; -import { toast } from 'react-toastify'; -import type { InterfaceActionItemCategoryList } from 'utils/interfaces'; import { ACTION_ITEM_CATEGORY_LIST } from 'GraphQl/Queries/ActionItemCategoryQueries'; +import type { InterfaceActionItemCategoryList } from 'utils/interfaces'; import Loader from 'components/Loader/Loader'; -import { WarningAmberRounded } from '@mui/icons-material'; type ModalType = 'Create' | 'Update'; @@ -27,6 +27,7 @@ const OrgActionItemCategories = (): any => { const [categoryId, setCategoryId] = useState(''); const [name, setName] = useState(''); + const [currName, setCurrName] = useState(''); const currentUrl = window.location.href.split('=')[1]; @@ -60,7 +61,7 @@ const OrgActionItemCategories = (): any => { ): Promise => { e.preventDefault(); try { - const { data } = await createActionItemCategory({ + await createActionItemCategory({ variables: { name, organizationId: currentUrl, @@ -72,8 +73,7 @@ const OrgActionItemCategories = (): any => { setAddModalIsOpen(false); - toast.success('Action Item Category created successfully'); - console.log(data); + toast.success(t('successfulCreation')); } catch (error: any) { toast.error(error.message); console.log(error); @@ -82,24 +82,28 @@ const OrgActionItemCategories = (): any => { const handleEdit = async (e: ChangeEvent): Promise => { e.preventDefault(); - try { - await updateActionItemCategory({ - variables: { - actionItemCategoryId: categoryId, - name, - }, - }); + if (name === currName) { + toast.info(t('sameNameConflict')); + } else { + try { + await updateActionItemCategory({ + variables: { + actionItemCategoryId: categoryId, + name, + }, + }); - setName(''); - setCategoryId(''); - refetch(); + setName(''); + setCategoryId(''); + refetch(); - setAddModalIsOpen(false); + setAddModalIsOpen(false); - toast.success('Action Item Category updated successfully'); - } catch (error: any) { - toast.error(error.message); - console.log(error); + toast.success(t('successfulUpdation')); + } catch (error: any) { + toast.error(error.message); + console.log(error); + } } }; @@ -118,9 +122,7 @@ const OrgActionItemCategories = (): any => { refetch(); toast.success( - `Action Item Category ${ - disabledStatus === true ? 'Enabled' : 'Disabled' - }` + disabledStatus ? t('categoryEnabled') : t('categoryDisabled') ); } catch (error: any) { toast.error(error.message); @@ -134,6 +136,7 @@ const OrgActionItemCategories = (): any => { }; const showUpdateModal = (name: string, id: string): void => { + setCurrName(name); setName(name); setCategoryId(id); setModalType('Update'); @@ -173,7 +176,7 @@ const OrgActionItemCategories = (): any => { data-testid="saveChangesBtn" > - {t('addActionItemCategory')} + {t('createButton')}
@@ -181,7 +184,15 @@ const OrgActionItemCategories = (): any => { return (
-
{category.name}
+
+ {category.name} +
diff --git a/src/screens/OrgSettings/OrgSettings.tsx b/src/screens/OrgSettings/OrgSettings.tsx index d159b645e2..b82fbf425f 100644 --- a/src/screens/OrgSettings/OrgSettings.tsx +++ b/src/screens/OrgSettings/OrgSettings.tsx @@ -38,7 +38,7 @@ function orgSettings(): JSX.Element { } onClick={() => setSetting('General')} > - General + {t('generalSettings')} From f956b7b0b83be03eabf61b6de3498b7aa286a0e7 Mon Sep 17 00:00:00 2001 From: meetul Date: Wed, 31 Jan 2024 14:08:09 +0530 Subject: [PATCH 03/14] add tests --- .../OrgActionItemCategories.test.tsx | 340 ++++++++++++++++++ .../OrgActionItemCategories.tsx | 12 +- .../OrgActionItemCategoryMocks.ts | 174 +++++++++ src/screens/OrgSettings/OrgSettings.test.tsx | 35 +- src/screens/OrgSettings/OrgSettings.tsx | 14 +- 5 files changed, 562 insertions(+), 13 deletions(-) create mode 100644 src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx create mode 100644 src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts diff --git a/src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx b/src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx new file mode 100644 index 0000000000..99348ad29f --- /dev/null +++ b/src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx @@ -0,0 +1,340 @@ +import React from 'react'; +import { render, screen, fireEvent, waitFor } from '@testing-library/react'; +import userEvent from '@testing-library/user-event'; +import 'jest-localstorage-mock'; +import { MockedProvider } from '@apollo/client/testing'; +import 'jest-location-mock'; +import { I18nextProvider } from 'react-i18next'; +import { Provider } from 'react-redux'; +import { BrowserRouter } from 'react-router-dom'; +import i18nForTest from 'utils/i18nForTest'; +import { toast } from 'react-toastify'; + +import { store } from 'state/store'; +import { StaticMockLink } from 'utils/StaticMockLink'; + +import OrgActionItemCategories from './OrgActionItemCategories'; +import { + MOCKS, + MOCKS_ERROR_QUERY, + MOCKS_ERROR_MUTATIONS, +} from './OrgActionItemCategoryMocks'; + +jest.mock('react-toastify', () => ({ + toast: { + success: jest.fn(), + error: jest.fn(), + }, +})); + +const link = new StaticMockLink(MOCKS, true); +const link2 = new StaticMockLink(MOCKS_ERROR_QUERY, true); +const link3 = new StaticMockLink(MOCKS_ERROR_MUTATIONS, true); + +const translations = JSON.parse( + JSON.stringify( + i18nForTest.getDataByLanguage('en')?.translation.orgActionItemCategories + ) +); + +describe('Testing Action Item Categories Component', () => { + test('Component loads correctly', async () => { + window.location.assign('/orgsetting/id=123'); + localStorage.setItem('UserType', 'SUPERADMIN'); + const { getByText } = render( + + + + + {} + + + + + ); + + await waitFor(() => { + expect(getByText(translations.createButton)).toBeInTheDocument(); + }); + }); + + test('render error component on unsuccessful query', async () => { + window.location.assign('/orgsetting/id=123'); + localStorage.setItem('UserType', 'SUPERADMIN'); + const { queryByText } = render( + + + + + {} + + + + + ); + + await waitFor(() => { + expect(queryByText(translations.createButton)).not.toBeInTheDocument(); + }); + }); + + test('opens and closes create and update modals on button clicks', async () => { + window.location.assign('/orgsetting/id=123'); + localStorage.setItem('UserType', 'SUPERADMIN'); + render( + + + + + {} + + + + + ); + + await waitFor(() => { + userEvent.click(screen.getByTestId('actionItemCategoryModalOpenBtn')); + userEvent.click(screen.getByTestId('actionItemCategoryModalCloseBtn')); + }); + + await waitFor(() => { + userEvent.click( + screen.getAllByTestId('actionItemCategoryUpdateModalOpenBtn')[0] + ); + userEvent.click(screen.getByTestId('actionItemCategoryModalCloseBtn')); + }); + }); + + test('create a new action item category', async () => { + window.location.assign('/orgsetting/id=123'); + localStorage.setItem('UserType', 'SUPERADMIN'); + render( + + + + + {} + + + + + ); + + await waitFor(() => { + userEvent.click(screen.getByTestId('actionItemCategoryModalOpenBtn')); + userEvent.type( + screen.getByPlaceholderText(translations.enterName), + 'ActionItemCategory 4' + ); + + userEvent.click(screen.getByTestId('formSubmitButton')); + }); + + await waitFor(() => { + expect(toast.success).toBeCalledWith(translations.successfulCreation); + }); + }); + + test('toast error on unsuccessful creation', async () => { + window.location.assign('/orgsetting/id=123'); + localStorage.setItem('UserType', 'SUPERADMIN'); + render( + + + + + {} + + + + + ); + + await waitFor(() => { + userEvent.click(screen.getByTestId('actionItemCategoryModalOpenBtn')); + userEvent.type( + screen.getByPlaceholderText(translations.enterName), + 'ActionItemCategory 4' + ); + + userEvent.click(screen.getByTestId('formSubmitButton')); + }); + + await waitFor(() => { + expect(toast.error).toHaveBeenCalled(); + }); + }); + + test('update an action item category', async () => { + window.location.assign('/orgsetting/id=123'); + localStorage.setItem('UserType', 'SUPERADMIN'); + render( + + + + + {} + + + + + ); + + await waitFor(() => { + userEvent.click( + screen.getAllByTestId('actionItemCategoryUpdateModalOpenBtn')[0] + ); + + const name = screen.getByPlaceholderText(translations.enterName); + fireEvent.change(name, { target: { value: '' } }); + + userEvent.type( + screen.getByPlaceholderText(translations.enterName), + 'ActionItemCategory 1 updated' + ); + + userEvent.click(screen.getByTestId('formSubmitButton')); + }); + + await waitFor(() => { + expect(toast.success).toBeCalledWith(translations.successfulUpdation); + }); + }); + + test('toast error on unsuccessful updation', async () => { + window.location.assign('/orgsetting/id=123'); + localStorage.setItem('UserType', 'SUPERADMIN'); + render( + + + + + {} + + + + + ); + + await waitFor(() => { + userEvent.click( + screen.getAllByTestId('actionItemCategoryUpdateModalOpenBtn')[0] + ); + + const name = screen.getByPlaceholderText(translations.enterName); + fireEvent.change(name, { target: { value: '' } }); + + userEvent.type( + screen.getByPlaceholderText(translations.enterName), + 'ActionItemCategory 1 updated' + ); + + userEvent.click(screen.getByTestId('formSubmitButton')); + }); + + await waitFor(() => { + expect(toast.error).toHaveBeenCalled(); + }); + }); + + test('toast error on providing the same name on updation', async () => { + window.location.assign('/orgsetting/id=123'); + localStorage.setItem('UserType', 'SUPERADMIN'); + render( + + + + + {} + + + + + ); + + await waitFor(() => { + userEvent.click( + screen.getAllByTestId('actionItemCategoryUpdateModalOpenBtn')[0] + ); + + const name = screen.getByPlaceholderText(translations.enterName); + fireEvent.change(name, { target: { value: '' } }); + + userEvent.type( + screen.getByPlaceholderText(translations.enterName), + 'ActionItemCategory 1' + ); + + userEvent.click(screen.getByTestId('formSubmitButton')); + }); + + await waitFor(() => { + expect(toast.error).toBeCalledWith(translations.sameNameConflict); + }); + }); + + test('toggle the disablity status of an action item category', async () => { + window.location.assign('/orgsetting/id=123'); + localStorage.setItem('UserType', 'SUPERADMIN'); + render( + + + + + {} + + + + + ); + + await waitFor(() => { + userEvent.click(screen.getAllByTestId('disabilityStatusButton')[0]); + }); + + await waitFor(() => { + expect(toast.success).toBeCalledWith(translations.categoryDisabled); + }); + + await waitFor(() => { + userEvent.click(screen.getAllByTestId('disabilityStatusButton')[1]); + }); + + await waitFor(() => { + expect(toast.success).toBeCalledWith(translations.categoryEnabled); + }); + }); + + test('toast error on unsuccessful toggling of the disablity status', async () => { + window.location.assign('/orgsetting/id=123'); + localStorage.setItem('UserType', 'SUPERADMIN'); + render( + + + + + {} + + + + + ); + + await waitFor(() => { + userEvent.click(screen.getAllByTestId('disabilityStatusButton')[0]); + }); + + await waitFor(() => { + expect(toast.error).toHaveBeenCalled(); + }); + + await waitFor(() => { + userEvent.click(screen.getAllByTestId('disabilityStatusButton')[1]); + }); + + await waitFor(() => { + expect(toast.error).toHaveBeenCalled(); + }); + }); +}); diff --git a/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx b/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx index e6f72e5924..72ca3d546f 100644 --- a/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx +++ b/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx @@ -83,7 +83,7 @@ const OrgActionItemCategories = (): any => { const handleEdit = async (e: ChangeEvent): Promise => { e.preventDefault(); if (name === currName) { - toast.info(t('sameNameConflict')); + toast.error(t('sameNameConflict')); } else { try { await updateActionItemCategory({ @@ -173,7 +173,7 @@ const OrgActionItemCategories = (): any => { value="savechanges" onClick={showCreateModal} className={styles.addButton} - data-testid="saveChangesBtn" + data-testid="actionItemCategoryModalOpenBtn" > {t('createButton')} @@ -199,6 +199,7 @@ const OrgActionItemCategories = (): any => { size="sm" variant="secondary" className="me-2" + data-testid="actionItemCategoryUpdateModalOpenBtn" > {t('editButton')} @@ -208,6 +209,7 @@ const OrgActionItemCategories = (): any => { } size="sm" variant={category.isDisabled ? 'outline-success' : 'danger'} + data-testid="disabilityStatusButton" > {category.isDisabled ? t('enableButton') @@ -236,7 +238,7 @@ const OrgActionItemCategories = (): any => { @@ -266,10 +268,10 @@ const OrgActionItemCategories = (): any => { type="submit" className={styles.greenregbtn} value="creatActionItemCategory" - data-testid="creatActionItemCategoryBtn" + data-testid="formSubmitButton" > {modalType === 'Create' - ? t('addActionItemCategory') + ? t('createButton') : t('updateActionItemCategory')} diff --git a/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts b/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts new file mode 100644 index 0000000000..b03e53c5f5 --- /dev/null +++ b/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts @@ -0,0 +1,174 @@ +import { + CREATE_ACTION_ITEM_CATEGORY_MUTATION, + UPDATE_ACTION_ITEM_CATEGORY_MUTATION, +} from 'GraphQl/Mutations/mutations'; + +import { ACTION_ITEM_CATEGORY_LIST } from 'GraphQl/Queries/Queries'; + +export const MOCKS = [ + { + request: { + query: ACTION_ITEM_CATEGORY_LIST, + variables: { organizationId: '123' }, + }, + result: { + data: { + actionItemCategoriesByOrganization: [ + { + _id: '1', + name: 'ActionItemCategory 1', + isDisabled: false, + }, + { + _id: '2', + name: 'ActionItemCategory 2', + isDisabled: true, + }, + { + _id: '3', + name: 'ActionItemCategory 3', + isDisabled: false, + }, + ], + }, + }, + }, + { + request: { + query: CREATE_ACTION_ITEM_CATEGORY_MUTATION, + variables: { name: 'ActionItemCategory 4', organizationId: '123' }, + }, + result: { + data: { + createActionItemCategory: { + _id: '4', + }, + }, + }, + }, + { + request: { + query: UPDATE_ACTION_ITEM_CATEGORY_MUTATION, + variables: { + name: 'ActionItemCategory 1 updated', + actionItemCategoryId: '1', + }, + }, + result: { + data: { + updateActionItemCategory: { + _id: '1', + }, + }, + }, + }, + { + request: { + query: UPDATE_ACTION_ITEM_CATEGORY_MUTATION, + variables: { + isDisabled: true, + actionItemCategoryId: '1', + }, + }, + result: { + data: { + updateActionItemCategory: { + _id: '1', + }, + }, + }, + }, + { + request: { + query: UPDATE_ACTION_ITEM_CATEGORY_MUTATION, + variables: { + isDisabled: false, + actionItemCategoryId: '2', + }, + }, + result: { + data: { + updateActionItemCategory: { + _id: '2', + }, + }, + }, + }, +]; + +export const MOCKS_ERROR_QUERY = [ + { + request: { + query: ACTION_ITEM_CATEGORY_LIST, + variables: { organizationId: '123' }, + }, + error: new Error('Mock Graphql Error'), + }, +]; + +export const MOCKS_ERROR_MUTATIONS = [ + { + request: { + query: ACTION_ITEM_CATEGORY_LIST, + variables: { organizationId: '123' }, + }, + result: { + data: { + actionItemCategoriesByOrganization: [ + { + _id: '1', + name: 'ActionItemCategory 1', + isDisabled: false, + }, + { + _id: '2', + name: 'ActionItemCategory 2', + isDisabled: true, + }, + { + _id: '3', + name: 'ActionItemCategory 3', + isDisabled: false, + }, + ], + }, + }, + }, + { + request: { + query: CREATE_ACTION_ITEM_CATEGORY_MUTATION, + variables: { name: 'ActionItemCategory 4', organizationId: '123' }, + }, + error: new Error('Mock Graphql Error'), + }, + { + request: { + query: UPDATE_ACTION_ITEM_CATEGORY_MUTATION, + variables: { + name: 'ActionItemCategory 1 updated', + actionItemCategoryId: '1', + }, + }, + error: new Error('Mock Graphql Error'), + }, + { + request: { + query: UPDATE_ACTION_ITEM_CATEGORY_MUTATION, + variables: { + isDisabled: true, + actionItemCategoryId: '1', + }, + }, + error: new Error('Mock Graphql Error'), + }, + { + request: { + query: UPDATE_ACTION_ITEM_CATEGORY_MUTATION, + variables: { + isDisabled: false, + actionItemCategoryId: '2', + }, + }, + error: new Error('Mock Graphql Error'), + }, +]; diff --git a/src/screens/OrgSettings/OrgSettings.test.tsx b/src/screens/OrgSettings/OrgSettings.test.tsx index a5323f39c5..a561a15162 100644 --- a/src/screens/OrgSettings/OrgSettings.test.tsx +++ b/src/screens/OrgSettings/OrgSettings.test.tsx @@ -1,6 +1,6 @@ import React from 'react'; import { MockedProvider } from '@apollo/react-testing'; -import { render, screen } from '@testing-library/react'; +import { fireEvent, render, screen, waitFor } from '@testing-library/react'; import 'jest-location-mock'; import { I18nextProvider } from 'react-i18next'; import { Provider } from 'react-redux'; @@ -80,6 +80,10 @@ const MOCKS = [ const link = new StaticMockLink(MOCKS, true); +const translations = JSON.parse( + JSON.stringify(i18nForTest.getDataByLanguage('en')?.translation.orgSettings) +); + afterEach(() => { localStorage.clear(); }); @@ -118,4 +122,33 @@ describe('Organisation Settings Page', () => { expect(screen.getByText(/Change Language/i)).toBeInTheDocument(); expect(window.location).toBeAt('/orgsetting/id=123'); }); + + test('should render appropriate settings based on the orgSetting state', async () => { + window.location.assign('/orgsetting/id=123'); + localStorage.setItem('UserType', 'SUPERADMIN'); + + const { getByText, queryByText } = render( + + + + + + + + + + ); + + await waitFor(() => { + fireEvent.click(getByText(translations.actionItemCategorySettings)); + expect( + queryByText(translations.actionItemCategories) + ).toBeInTheDocument(); + }); + + await waitFor(() => { + fireEvent.click(getByText(translations.generalSettings)); + expect(queryByText(translations.updateOrganization)).toBeInTheDocument(); + }); + }); }); diff --git a/src/screens/OrgSettings/OrgSettings.tsx b/src/screens/OrgSettings/OrgSettings.tsx index b82fbf425f..bd8a08c67b 100644 --- a/src/screens/OrgSettings/OrgSettings.tsx +++ b/src/screens/OrgSettings/OrgSettings.tsx @@ -18,7 +18,7 @@ function orgSettings(): JSX.Element { keyPrefix: 'orgSettings', }); - const [setting, setSetting] = useState('General'); + const [orgSetting, setOrgSetting] = useState('General'); document.title = t('title'); const orgId = window.location.href.split('=')[1]; @@ -34,20 +34,20 @@ function orgSettings(): JSX.Element { @@ -58,7 +58,7 @@ function orgSettings(): JSX.Element { - {setting === 'General' && ( + {orgSetting === 'General' && ( @@ -103,7 +103,7 @@ function orgSettings(): JSX.Element { )} - {setting === 'ActionItemCategories' && ( + {orgSetting === 'ActionItemCategories' && ( From c3fb6a64eb3c4721aba0d136978af82b9c4679d3 Mon Sep 17 00:00:00 2001 From: meetul Date: Wed, 31 Jan 2024 17:44:50 +0530 Subject: [PATCH 04/14] add dropdown for toggling settings on small screens --- public/locales/en.json | 7 +- public/locales/fr.json | 7 +- public/locales/hi.json | 7 +- public/locales/sp.json | 7 +- public/locales/zh.json | 7 +- .../OrgSettings/OrgSettings.module.css | 17 +++++ src/screens/OrgSettings/OrgSettings.test.tsx | 9 ++- src/screens/OrgSettings/OrgSettings.tsx | 76 +++++++++++++------ 8 files changed, 89 insertions(+), 48 deletions(-) diff --git a/public/locales/en.json b/public/locales/en.json index e07dd8d664..40cb6cb9ed 100644 --- a/public/locales/en.json +++ b/public/locales/en.json @@ -446,16 +446,15 @@ "orgSettings": { "title": "Talawa Setting", "pageName": "Settings", - "generalSettings": "General", - "actionItemCategorySettings": "Action Item Categories", + "general": "General", + "actionItemCategories": "Action Item Categories", "updateOrganization": "Update Organization", "seeRequest": "See Request", "settings": "Settings", "noData": "No data", "otherSettings": "Other Settings", "changeLanguage": "Change Language", - "manageCustomFields": "Manage Custom Fields", - "actionItemCategories": "Action Item Categories" + "manageCustomFields": "Manage Custom Fields" }, "deleteOrg": { "deleteOrganization": "Delete Organization", diff --git a/public/locales/fr.json b/public/locales/fr.json index 63262db200..2e33f5778c 100644 --- a/public/locales/fr.json +++ b/public/locales/fr.json @@ -441,8 +441,8 @@ "orgSettings": { "title": "Paramètre Talawa", "pageName": "Paramètres", - "generalSettings": "Général", - "actionItemCategorySettings": "Catégories d’éléments d’action", + "general": "Général", + "actionItemCategories": "Catégories d’éléments d’action", "updateYourDetails": "Mettre à jour vos informations", "updateYourPassword": "Mettez à jour votre mot de passe", "updateOrganization": "Mettre à jour l'organisation", @@ -451,8 +451,7 @@ "noData": "Pas de données", "otherSettings": "Autres paramètres", "changeLanguage": "Changer la langue", - "manageCustomFields": "Gérer les Champs Personnalisés", - "actionItemCategories": "Catégories d’éléments d’action" + "manageCustomFields": "Gérer les Champs Personnalisés" }, "deleteOrg": { "deleteOrganization": "Supprimer l'organisation", diff --git a/public/locales/hi.json b/public/locales/hi.json index 1a7cb368d6..0838da2c94 100644 --- a/public/locales/hi.json +++ b/public/locales/hi.json @@ -441,8 +441,8 @@ "orgSettings": { "title": "तलावा सेटिंग", "pageName": "सेटिंग्स", - "generalSettings": "सामान्य", - "actionItemCategorySettings": "कार्रवाई आइटम श्रेणियाँ", + "general": "सामान्य", + "actionItemCategories": "कार्रवाई आइटम श्रेणियाँ", "updateYourDetails": "अपना विवरण अपडेट करें", "updateYourPassword": "अपना पासवर्ड अपडेट करें", "updateOrganization": "अद्यतन संगठन", @@ -451,8 +451,7 @@ "noData": "कोई डेटा नहीं", "otherSettings": "अन्य सेटिंग्स", "changeLanguage": "भाषा बदलें", - "manageCustomFields": "कस्टम फ़ील्ड प्रबंधन करें", - "actionItemCategories": "कार्रवाई आइटम श्रेणियाँ" + "manageCustomFields": "कस्टम फ़ील्ड प्रबंधन करें" }, "deleteOrg": { "deleteOrganization": "संगठन हटाएं", diff --git a/public/locales/sp.json b/public/locales/sp.json index 9f87d93bd4..3878765015 100644 --- a/public/locales/sp.json +++ b/public/locales/sp.json @@ -440,8 +440,8 @@ "orgSettings": { "title": "Configuración Talawa", "pageName": "Configuración", - "generalSettings": "General", - "actionItemCategorySettings": "Categorías de elementos de acción", + "general": "General", + "actionItemCategories": "Categorías de elementos de acción", "updateYourDetails": "Actualiza tus datos", "updateYourPassword": "Actualice su contraseña", "updateOrganization": "Actualizar Organización", @@ -450,8 +450,7 @@ "noData": "Sin datos", "otherSettings": "Otras Configuraciones", "changeLanguage": "Cambiar Idioma", - "manageCustomFields": "Gestionar Campos Personalizados", - "actionItemCategories": "Categorías de elementos de acción" + "manageCustomFields": "Gestionar Campos Personalizados" }, "deleteOrg": { "deleteOrganization": "Eliminar organización", diff --git a/public/locales/zh.json b/public/locales/zh.json index b4e996a8c0..a6da896967 100644 --- a/public/locales/zh.json +++ b/public/locales/zh.json @@ -441,8 +441,8 @@ "orgSettings": { "title": "塔拉瓦設置", "pageName": "设置", - "generalSettings": "一般", - "actionItemCategorySettings": "措施项类别", + "general": "一般", + "actionItemCategories": "措施项类别", "updateYourDetails": "更新您的詳細信息", "updateYourPassword": "更新您的密碼", "updateOrganization": "更新組織", @@ -451,8 +451,7 @@ "noData": "沒有數據", "otherSettings": "其他设置", "changeLanguage": "更改语言", - "manageCustomFields": "管理自定义字段", - "actionItemCategories": "措施项类别" + "manageCustomFields": "管理自定义字段" }, "deleteOrg": { "deleteOrganization": "删除组织", diff --git a/src/screens/OrgSettings/OrgSettings.module.css b/src/screens/OrgSettings/OrgSettings.module.css index aa21f6dab2..f0a3ad7439 100644 --- a/src/screens/OrgSettings/OrgSettings.module.css +++ b/src/screens/OrgSettings/OrgSettings.module.css @@ -34,3 +34,20 @@ hr { height: 1px; background-color: var(--bs-gray-500); } + +.settingsTabs { + display: none; +} + +@media (min-width: 577px) { + .settingsDropdown { + display: none; + border: 1px solid black; + } +} + +@media (min-width: 577px) { + .settingsTabs { + display: block; + } +} diff --git a/src/screens/OrgSettings/OrgSettings.test.tsx b/src/screens/OrgSettings/OrgSettings.test.tsx index a561a15162..87c8d30adf 100644 --- a/src/screens/OrgSettings/OrgSettings.test.tsx +++ b/src/screens/OrgSettings/OrgSettings.test.tsx @@ -1,6 +1,6 @@ import React from 'react'; import { MockedProvider } from '@apollo/react-testing'; -import { fireEvent, render, screen, waitFor } from '@testing-library/react'; +import { render, screen, waitFor } from '@testing-library/react'; import 'jest-location-mock'; import { I18nextProvider } from 'react-i18next'; import { Provider } from 'react-redux'; @@ -12,6 +12,7 @@ import { StaticMockLink } from 'utils/StaticMockLink'; import i18nForTest from 'utils/i18nForTest'; import OrgSettings from './OrgSettings'; import { ORGANIZATIONS_LIST } from 'GraphQl/Queries/Queries'; +import userEvent from '@testing-library/user-event'; const MOCKS = [ { @@ -127,7 +128,7 @@ describe('Organisation Settings Page', () => { window.location.assign('/orgsetting/id=123'); localStorage.setItem('UserType', 'SUPERADMIN'); - const { getByText, queryByText } = render( + const { queryByText } = render( @@ -140,14 +141,14 @@ describe('Organisation Settings Page', () => { ); await waitFor(() => { - fireEvent.click(getByText(translations.actionItemCategorySettings)); + userEvent.click(screen.getByTestId('actionItemCategoriesSettings')); expect( queryByText(translations.actionItemCategories) ).toBeInTheDocument(); }); await waitFor(() => { - fireEvent.click(getByText(translations.generalSettings)); + userEvent.click(screen.getByTestId('generalSettings')); expect(queryByText(translations.updateOrganization)).toBeInTheDocument(); }); }); diff --git a/src/screens/OrgSettings/OrgSettings.tsx b/src/screens/OrgSettings/OrgSettings.tsx index bd8a08c67b..8bd66a2154 100644 --- a/src/screens/OrgSettings/OrgSettings.tsx +++ b/src/screens/OrgSettings/OrgSettings.tsx @@ -3,7 +3,8 @@ import ChangeLanguageDropDown from 'components/ChangeLanguageDropdown/ChangeLang import DeleteOrg from 'components/DeleteOrg/DeleteOrg'; import OrgUpdate from 'components/OrgUpdate/OrgUpdate'; import OrganizationScreen from 'components/OrganizationScreen/OrganizationScreen'; -import { Button, Card, Form } from 'react-bootstrap'; +import { Button, Card, Dropdown, Form } from 'react-bootstrap'; +import type { DropDirection } from 'react-bootstrap/esm/DropdownContext'; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; import { useTranslation } from 'react-i18next'; @@ -11,18 +12,22 @@ import styles from './OrgSettings.module.css'; import OrgProfileFieldSettings from 'components/OrgProfileFieldSettings/OrgProfileFieldSettings'; import OrgActionItemCategories from 'components/OrgActionItemCategories/OrgActionItemCategories'; -type SettingType = 'General' | 'ActionItemCategories'; +type SettingType = 'general' | 'actionItemCategories'; function orgSettings(): JSX.Element { const { t } = useTranslation('translation', { keyPrefix: 'orgSettings', }); - const [orgSetting, setOrgSetting] = useState('General'); + const orgSettings: SettingType[] = ['general', 'actionItemCategories']; + + const [orgSetting, setOrgSetting] = useState('general'); document.title = t('title'); const orgId = window.location.href.split('=')[1]; + const dropDirection: DropDirection = 'down'; + return ( <> @@ -31,26 +36,49 @@ function orgSettings(): JSX.Element { > - - + ))} +
+ + - {t('actionItemCategorySettings')} - + + {t(orgSetting)} + + + {orgSettings.map((setting, index) => ( + setOrgSetting(setting) + } + className={orgSetting === setting ? 'text-secondary' : ''} + > + {t(setting)} + + ))} + + @@ -58,7 +86,7 @@ function orgSettings(): JSX.Element { - {orgSetting === 'General' && ( + {orgSetting === 'general' && ( @@ -103,7 +131,7 @@ function orgSettings(): JSX.Element { )} - {orgSetting === 'ActionItemCategories' && ( + {orgSetting === 'actionItemCategories' && ( From 6a643bfb89fe5c9263faf86c5d0c8db25a46cdd8 Mon Sep 17 00:00:00 2001 From: meetul Date: Wed, 31 Jan 2024 19:54:43 +0530 Subject: [PATCH 05/14] minor corrections --- .../OrgActionItemCategories.module.css | 2 +- .../OrgActionItemCategories.test.tsx | 10 ---------- src/screens/OrgSettings/OrgSettings.module.css | 1 - 3 files changed, 1 insertion(+), 12 deletions(-) diff --git a/src/components/OrgActionItemCategories/OrgActionItemCategories.module.css b/src/components/OrgActionItemCategories/OrgActionItemCategories.module.css index 93c2babd0f..ac9f4a5900 100644 --- a/src/components/OrgActionItemCategories/OrgActionItemCategories.module.css +++ b/src/components/OrgActionItemCategories/OrgActionItemCategories.module.css @@ -25,7 +25,7 @@ } .titlemodal { - color: #707070; + color: var(--bs-gray-600); font-weight: 600; font-size: 20px; margin-top: 1rem; diff --git a/src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx b/src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx index 99348ad29f..d1daff0aea 100644 --- a/src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx +++ b/src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx @@ -40,7 +40,6 @@ const translations = JSON.parse( describe('Testing Action Item Categories Component', () => { test('Component loads correctly', async () => { window.location.assign('/orgsetting/id=123'); - localStorage.setItem('UserType', 'SUPERADMIN'); const { getByText } = render( @@ -60,7 +59,6 @@ describe('Testing Action Item Categories Component', () => { test('render error component on unsuccessful query', async () => { window.location.assign('/orgsetting/id=123'); - localStorage.setItem('UserType', 'SUPERADMIN'); const { queryByText } = render( @@ -80,7 +78,6 @@ describe('Testing Action Item Categories Component', () => { test('opens and closes create and update modals on button clicks', async () => { window.location.assign('/orgsetting/id=123'); - localStorage.setItem('UserType', 'SUPERADMIN'); render( @@ -108,7 +105,6 @@ describe('Testing Action Item Categories Component', () => { test('create a new action item category', async () => { window.location.assign('/orgsetting/id=123'); - localStorage.setItem('UserType', 'SUPERADMIN'); render( @@ -138,7 +134,6 @@ describe('Testing Action Item Categories Component', () => { test('toast error on unsuccessful creation', async () => { window.location.assign('/orgsetting/id=123'); - localStorage.setItem('UserType', 'SUPERADMIN'); render( @@ -168,7 +163,6 @@ describe('Testing Action Item Categories Component', () => { test('update an action item category', async () => { window.location.assign('/orgsetting/id=123'); - localStorage.setItem('UserType', 'SUPERADMIN'); render( @@ -204,7 +198,6 @@ describe('Testing Action Item Categories Component', () => { test('toast error on unsuccessful updation', async () => { window.location.assign('/orgsetting/id=123'); - localStorage.setItem('UserType', 'SUPERADMIN'); render( @@ -240,7 +233,6 @@ describe('Testing Action Item Categories Component', () => { test('toast error on providing the same name on updation', async () => { window.location.assign('/orgsetting/id=123'); - localStorage.setItem('UserType', 'SUPERADMIN'); render( @@ -276,7 +268,6 @@ describe('Testing Action Item Categories Component', () => { test('toggle the disablity status of an action item category', async () => { window.location.assign('/orgsetting/id=123'); - localStorage.setItem('UserType', 'SUPERADMIN'); render( @@ -308,7 +299,6 @@ describe('Testing Action Item Categories Component', () => { test('toast error on unsuccessful toggling of the disablity status', async () => { window.location.assign('/orgsetting/id=123'); - localStorage.setItem('UserType', 'SUPERADMIN'); render( diff --git a/src/screens/OrgSettings/OrgSettings.module.css b/src/screens/OrgSettings/OrgSettings.module.css index f0a3ad7439..6910ff49ad 100644 --- a/src/screens/OrgSettings/OrgSettings.module.css +++ b/src/screens/OrgSettings/OrgSettings.module.css @@ -42,7 +42,6 @@ hr { @media (min-width: 577px) { .settingsDropdown { display: none; - border: 1px solid black; } } From a79fa35692124dd9a5041d91ebed1ddac24ea67c Mon Sep 17 00:00:00 2001 From: meetul Date: Thu, 1 Feb 2024 10:30:19 +0530 Subject: [PATCH 06/14] minor change --- .../OrgActionItemCategories/OrgActionItemCategories.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx b/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx index 72ca3d546f..5e5611b54e 100644 --- a/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx +++ b/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx @@ -107,7 +107,7 @@ const OrgActionItemCategories = (): any => { } }; - const handleDisableStatus = async ( + const handleStatusChange = async ( id: string, disabledStatus: boolean ): Promise => { @@ -205,7 +205,7 @@ const OrgActionItemCategories = (): any => {
- {data?.actionItemCategoriesByOrganization.map((category, index) => { + {actionItemCategories?.map((category, index) => { return (
@@ -218,9 +220,7 @@ const OrgActionItemCategories = (): any => {
- {index !== data.actionItemCategoriesByOrganization.length - 1 && ( -
- )} + {index !== actionItemCategories.length - 1 &&
}
); })} @@ -228,7 +228,7 @@ const OrgActionItemCategories = (): any => { diff --git a/src/screens/OrgSettings/OrgSettings.tsx b/src/screens/OrgSettings/OrgSettings.tsx index 8bd66a2154..8dc3db1e22 100644 --- a/src/screens/OrgSettings/OrgSettings.tsx +++ b/src/screens/OrgSettings/OrgSettings.tsx @@ -4,7 +4,6 @@ import DeleteOrg from 'components/DeleteOrg/DeleteOrg'; import OrgUpdate from 'components/OrgUpdate/OrgUpdate'; import OrganizationScreen from 'components/OrganizationScreen/OrganizationScreen'; import { Button, Card, Dropdown, Form } from 'react-bootstrap'; -import type { DropDirection } from 'react-bootstrap/esm/DropdownContext'; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; import { useTranslation } from 'react-i18next'; @@ -26,8 +25,6 @@ function orgSettings(): JSX.Element { document.title = t('title'); const orgId = window.location.href.split('=')[1]; - const dropDirection: DropDirection = 'down'; - return ( <> @@ -55,7 +52,7 @@ function orgSettings(): JSX.Element { Date: Sun, 11 Feb 2024 10:48:21 +0000 Subject: [PATCH 08/14] Update documentation --- ..._support_services_Plugin_helper.default.md | 6 +-- ...ts_EventCalendar_EventCalendar.ViewType.md | 4 +- ..._CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +-- ...In_types.InterfaceAttendeeQueryResponse.md | 2 +- ...onents_CheckIn_types.InterfaceModalProp.md | 6 +-- ...nts_CheckIn_types.InterfaceTableCheckIn.md | 10 ++--- ...onents_CheckIn_types.InterfaceTableData.md | 6 +-- .../components_CheckIn_types.InterfaceUser.md | 6 +-- ...leDropdown.InterfaceCollapsibleDropdown.md | 4 +- ...nt_IconComponent.InterfaceIconComponent.md | 8 ++-- ...eftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +-- ...eftDrawerEventWrapper.InterfacePropType.md | 4 +- ..._LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 ++--- ...wer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +-- ...d_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...eFieldSettings.InterfaceCustomFieldData.md | 4 +- ...ionDashCards_CardItem.InterfaceCardItem.md | 14 +++---- ...Screen.InterfaceOrganizationScreenProps.md | 6 +-- ...inScreen.InterfaceSuperAdminScreenProps.md | 6 +-- ...Loader_TableLoader.InterfaceTableLoader.md | 6 +-- talawa-admin-docs/modules.md | 3 ++ .../modules/components_AddOn_AddOn.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...s_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ..._AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- ...onents_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ..._AddOn_support_components_Action_Action.md | 2 +- ...port_components_MainContent_MainContent.md | 2 +- ..._support_components_SidePanel_SidePanel.md | 2 +- ...omponents_Advertisements_Advertisements.md | 2 +- ...e_AdvertisementEntry_AdvertisementEntry.md | 2 +- ...rtisementRegister_AdvertisementRegister.md | 2 +- ...LanguageDropdown_ChangeLanguageDropDown.md | 4 +- .../components_CheckIn_CheckInModal.md | 2 +- .../components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +-- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../components_ContriStats_ContriStats.md | 2 +- ...rrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...omFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ...tRegistrantsModal_EventRegistrantsModal.md | 2 +- ...egistrantsModal_EventRegistrantsWrapper.md | 2 +- .../components_EventStats_EventStats.md | 2 +- ...components_EventStats_EventStatsWrapper.md | 2 +- ...nts_EventStats_Statistics_AverageRating.md | 2 +- ...mponents_EventStats_Statistics_Feedback.md | 2 +- ...components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- ...ponents_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ..._LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...nts_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...nts_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...nItemCategories_OrgActionItemCategories.md | 23 +++++++++++ ...Categories_OrgActionItemCategories_test.md | 3 ++ ...emCategories_OrgActionItemCategoryMocks.md | 41 +++++++++++++++++++ ...nents_OrgAdminListCard_OrgAdminListCard.md | 2 +- ...omponents_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../components_OrgListCard_OrgListCard.md | 2 +- ...nts_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../components_OrgPostCard_OrgPostCard.md | 2 +- ...leFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../components_OrgUpdate_OrgUpdateMocks.md | 10 ++--- ...nizationCardStart_OrganizationCardStart.md | 2 +- ...nents_OrganizationCard_OrganizationCard.md | 2 +- ...mponents_OrganizationDashCards_CardItem.md | 2 +- ...s_OrganizationDashCards_CardItemLoading.md | 2 +- ...nts_OrganizationDashCards_DashboardCard.md | 2 +- ...anizationDashCards_DashboardCardLoading.md | 2 +- ...s_OrganizationScreen_OrganizationScreen.md | 2 +- ...omponents_PaginationList_PaginationList.md | 2 +- .../components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...nents_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...s_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- ...components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...ents_UserPortal_CommentCard_CommentCard.md | 2 +- ...ents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ts_UserPortal_DonationCard_DonationCard.md | 2 +- ...mponents_UserPortal_EventCard_EventCard.md | 2 +- .../components_UserPortal_Login_Login.md | 2 +- ...ortal_OrganizationCard_OrganizationCard.md | 2 +- ...l_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...OrganizationSidebar_OrganizationSidebar.md | 2 +- ...onents_UserPortal_PeopleCard_PeopleCard.md | 2 +- ...components_UserPortal_PostCard_PostCard.md | 2 +- ...ts_UserPortal_PromotedPost_PromotedPost.md | 2 +- ...components_UserPortal_Register_Register.md | 2 +- ...SecuredRouteForUser_SecuredRouteForUser.md | 2 +- ...onents_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...ents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../components_UserUpdate_UserUpdate.md | 2 +- ...nents_UsersTableItem_UserTableItemMocks.md | 4 +- ...omponents_UsersTableItem_UsersTableItem.md | 2 +- ...nents_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- ...ponents_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- ...ens_EventDashboard_EventDashboard_mocks.md | 4 +- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../screens_MemberDetail_MemberDetail.md | 6 +-- ...screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 10 ++--- .../screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../screens_OrgSettings_OrgSettings.md | 2 +- ...nizationDashboard_OrganizationDashboard.md | 2 +- ...ionDashboard_OrganizationDashboardMocks.md | 6 +-- ...s_OrganizationEvents_OrganizationEvents.md | 2 +- ...s_OrganizationPeople_OrganizationPeople.md | 2 +- .../screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../screens_UserPortal_Donate_Donate.md | 2 +- .../screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ..._UserPortal_Organizations_Organizations.md | 2 +- .../screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ..._UserPortal_UserLoginPage_UserLoginPage.md | 2 +- .../modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +-- 135 files changed, 261 insertions(+), 191 deletions(-) create mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md create mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md create mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index 31189c706c..3428246dbb 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index 29922c23d5..34177e5dd8 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index eb47c5bd4e..349f706aee 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index 9ecfe473e1..c268264e44 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index 2fa711670a..aa8fef33bc 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index e87af3ecc3..7240b0d5ba 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index 390a79948f..17e3e0ab64 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index 877cb3ff5a..371337dbfa 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index a94bf4c9bf..e7b891af85 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index a8669a5913..d675f82311 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index 2323d9e1b9..27ef214dbd 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index 231bd29f60..843e47bd00 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index 4ba897ae0f..40b053830f 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index d1fc895d2d..4b4d1aca45 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index 9d46c92019..27134b61ec 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index 7ccadce5c2..fb59797658 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index 5efc787028..4ad261d7a3 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 1b6a706c65..967f8cf6f6 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index f6f3b33975..e8935e1e4b 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index e545773409..0bc61c7726 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules.md b/talawa-admin-docs/modules.md index 8abc529b22..277f14bea9 100644 --- a/talawa-admin-docs/modules.md +++ b/talawa-admin-docs/modules.md @@ -86,6 +86,9 @@ - [components/MemberRequestCard/MemberRequestCard.test](modules/components_MemberRequestCard_MemberRequestCard_test.md) - [components/NotFound/NotFound](modules/components_NotFound_NotFound.md) - [components/NotFound/NotFound.test](modules/components_NotFound_NotFound_test.md) +- [components/OrgActionItemCategories/OrgActionItemCategories](modules/components_OrgActionItemCategories_OrgActionItemCategories.md) +- [components/OrgActionItemCategories/OrgActionItemCategories.test](modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md) +- [components/OrgActionItemCategories/OrgActionItemCategoryMocks](modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md) - [components/OrgAdminListCard/OrgAdminListCard](modules/components_OrgAdminListCard_OrgAdminListCard.md) - [components/OrgAdminListCard/OrgAdminListCard.test](modules/components_OrgAdminListCard_OrgAdminListCard_test.md) - [components/OrgContriCards/OrgContriCards](modules/components_OrgContriCards_OrgContriCards.md) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index 7708f3efc0..f0aad13888 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index d5d4096e0d..b770fed424 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index 2a0b34d8cf..f70d80cfd1 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index d6f1d0ac38..1b9b3b0003 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index 09c5ab3380..6d44a8ab93 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index f93d3d6b94..37e0960913 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index af9faef144..f2731c1584 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index c9411bcff6..c8a3c18b18 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index 17e75d0708..a3e620c367 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index 22f50c02b7..07906d1ca9 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index 5a91b6e729..64de8567b6 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index 44f300753c..118ec0338a 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index ccee8edbae..1b2413fb30 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index 9bee87f600..ba5e942af3 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index aceaaf32f1..fa11e97fc2 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index 209120d33e..0b9b66a535 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index 97a50ec9f6..58434d0f47 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index 0811628058..895ca6714d 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index 07484f6961..e10abd5bbf 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 6996074140..8bea1a41ad 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index 2b688e769e..0f56449053 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index 740b3130a9..4e3399e510 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index be0467b5cb..1c6e9d76d9 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index d2df808a4e..0aac0060f7 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index a8458ded95..da2a91c93f 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index 32d3c032d5..b11f7541a3 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index 2278652afb..47925f17f6 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index d8f65115de..4c57afb8f5 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index 2970784a82..b92cb52257 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index d6c62473e2..8d41d64131 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index 2260ddfa76..7544f0c3c9 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index bc862524a0..27a557f56b 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index 2305d3dbad..f52caf855a 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index e2b5d4d9a6..5b82e5ee73 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index 6d0b7b40de..a9966af4ed 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index ae7da72814..b492d4324f 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index dd36c8b540..02ce18b114 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index e7d0d13510..9d95168fa4 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index 62629fd66c..e63e8c843c 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index 3c27d00110..75129d07b1 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md new file mode 100644 index 0000000000..4299352484 --- /dev/null +++ b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md @@ -0,0 +1,23 @@ +[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories + +# Module: components/OrgActionItemCategories/OrgActionItemCategories + +## Table of contents + +### Functions + +- [default](components_OrgActionItemCategories_OrgActionItemCategories.md#default) + +## Functions + +### default + +▸ **default**(): `any` + +#### Returns + +`any` + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategories.tsx:20](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx#L20) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md new file mode 100644 index 0000000000..dc005c10a5 --- /dev/null +++ b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md @@ -0,0 +1,3 @@ +[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories.test + +# Module: components/OrgActionItemCategories/OrgActionItemCategories.test diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md new file mode 100644 index 0000000000..7b28eee72a --- /dev/null +++ b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md @@ -0,0 +1,41 @@ +[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategoryMocks + +# Module: components/OrgActionItemCategories/OrgActionItemCategoryMocks + +## Table of contents + +### Variables + +- [MOCKS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks) +- [MOCKS\_ERROR\_MUTATIONS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_mutations) +- [MOCKS\_ERROR\_QUERY](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_query) + +## Variables + +### MOCKS + +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory`: \{ `_id`: `string` = '4' \} ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \})[] + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L8) + +___ + +### MOCKS\_ERROR\_MUTATIONS + +• `Const` **MOCKS\_ERROR\_MUTATIONS**: (\{ `error?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] \} \} \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \})[] + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L109) + +___ + +### MOCKS\_ERROR\_QUERY + +• `Const` **MOCKS\_ERROR\_QUERY**: \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `organizationId`: `string` = '123' \} \} \}[] + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:99](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L99) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index a502f77abd..d7853205ac 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index 7793777b0d..3efc41bdf8 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index 128d528006..3ae9c4acf0 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index 18bfd4460b..0ed8c38a14 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index 3bfe921cb6..a9b63f1189 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index abd4ea5663..5ad47a9e53 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index 24633b513a..7724d78e28 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index f3671db7f1..e9ccc40dc6 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index 356df928c1..43e537e812 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -14,11 +14,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,14 +28,14 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ ### MOCKS\_ERROR\_UPDATE\_ORGLIST -• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] +• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index 1f3d0f7f15..ebb5cefa3f 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index e72bc4b169..9fcb4bde5f 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index 149ddf73b5..20b7617bd6 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index c837ff6ae3..3430cabf23 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 4874366105..0d70f87627 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index 48551c741d..713114c5f8 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index 8abc38e92f..18475e198d 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index 2b35c78487..4f127449db 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index d4d4be6cd8..a274c55a43 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index 1f48f3cb87..f26afba629 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index 11c00f6131..f8e9874042 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index 9874a5c25e..d01f329b67 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index f8f040f88e..00082ff39f 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 517a6d692f..5ec073ecf3 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index 84480b9f02..e88d7d0556 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index 9d36774a58..1c90f574b1 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index f40934d0f8..da6ef0df1d 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index c40b5fd806..ac80ac7440 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index 564eb9afa7..279438267c 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index 4b80b3969f..7342eabebc 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index c7b1e8643e..5f15531331 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index 492e7a44c7..bd46c6208d 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index 6902fe678a..62b817922c 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index a3497d6bca..bc837d8e02 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index 533ef95663..91095cbf49 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index 8ce7350f58..1f7b9f28d7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index 7865759c03..e03951bd4f 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index b834c74894..cefd3e94f2 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index 265a3d12ef..a469755471 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index d31979578d..0a7e625793 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index 6e9f01258e..fb04242d67 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index 85305b69e0..fdb8c8caa3 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -12,8 +12,8 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = 'abc'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = 'abc'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = '123'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = '123'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index c1e49109f4..9a3eae50c8 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index f35bdef35a..91e2944b20 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index dfc53edd9f..dcaecb4ddf 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index 631fb56671..9c97cd5542 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index 33bbf8f7ec..855ec4ca1a 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index 55d32ca1f5..3aeed979e3 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index b326d5e77f..25bfb9563c 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 75b2f9d03a..523813b373 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index 3775c53c7c..8c65ebb485 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index c9f5d05463..e8b97abce8 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index 04775362ee..11beab3b0c 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index 95d493570c..3e6a37562e 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -15,11 +15,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 70df93939d..812d988af2 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index a21030a9eb..c16e08343e 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index 7ea5d95389..3861125e47 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) +[src/screens/OrgSettings/OrgSettings.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgSettings/OrgSettings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index 7fb0774b3c..e1596967d8 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index 58a98c70e1..1e2a4375dd 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index 5ea99e50ac..9bb24810f0 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index 6169d2109b..e5b8424369 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index 580ae063d3..f73aa79c7d 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index 314d6c9dfd..df56da796e 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index ebd7721aa6..9284c48043 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index b99b7dca32..48190bfa98 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index c3820ac902..2ff4742d59 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index c59cfe6ad9..358598a166 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 8e7d871987..9fbce2bf8d 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index fb7a967028..f8eef54921 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index ddb0371bf4..7280631a78 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index a87c93404e..d782cf182e 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index 31b72fc622..a30c471b0c 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/Users/UsersMocks.ts#L233) From f0d07a2fbc8d9046474551293906a593fd9243ca Mon Sep 17 00:00:00 2001 From: meetul Date: Sun, 11 Feb 2024 16:20:48 +0530 Subject: [PATCH 09/14] Revert "Update documentation" This reverts commit 13a638b9b41af35127cea1f9a023c480d8dc677b. --- ..._support_services_Plugin_helper.default.md | 6 +-- ...ts_EventCalendar_EventCalendar.ViewType.md | 4 +- ..._CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +-- ...In_types.InterfaceAttendeeQueryResponse.md | 2 +- ...onents_CheckIn_types.InterfaceModalProp.md | 6 +-- ...nts_CheckIn_types.InterfaceTableCheckIn.md | 10 ++--- ...onents_CheckIn_types.InterfaceTableData.md | 6 +-- .../components_CheckIn_types.InterfaceUser.md | 6 +-- ...leDropdown.InterfaceCollapsibleDropdown.md | 4 +- ...nt_IconComponent.InterfaceIconComponent.md | 8 ++-- ...eftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +-- ...eftDrawerEventWrapper.InterfacePropType.md | 4 +- ..._LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 ++--- ...wer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +-- ...d_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...eFieldSettings.InterfaceCustomFieldData.md | 4 +- ...ionDashCards_CardItem.InterfaceCardItem.md | 14 +++---- ...Screen.InterfaceOrganizationScreenProps.md | 6 +-- ...inScreen.InterfaceSuperAdminScreenProps.md | 6 +-- ...Loader_TableLoader.InterfaceTableLoader.md | 6 +-- talawa-admin-docs/modules.md | 3 -- .../modules/components_AddOn_AddOn.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...s_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ..._AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- ...onents_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ..._AddOn_support_components_Action_Action.md | 2 +- ...port_components_MainContent_MainContent.md | 2 +- ..._support_components_SidePanel_SidePanel.md | 2 +- ...omponents_Advertisements_Advertisements.md | 2 +- ...e_AdvertisementEntry_AdvertisementEntry.md | 2 +- ...rtisementRegister_AdvertisementRegister.md | 2 +- ...LanguageDropdown_ChangeLanguageDropDown.md | 4 +- .../components_CheckIn_CheckInModal.md | 2 +- .../components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +-- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../components_ContriStats_ContriStats.md | 2 +- ...rrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...omFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ...tRegistrantsModal_EventRegistrantsModal.md | 2 +- ...egistrantsModal_EventRegistrantsWrapper.md | 2 +- .../components_EventStats_EventStats.md | 2 +- ...components_EventStats_EventStatsWrapper.md | 2 +- ...nts_EventStats_Statistics_AverageRating.md | 2 +- ...mponents_EventStats_Statistics_Feedback.md | 2 +- ...components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- ...ponents_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ..._LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...nts_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...nts_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...nItemCategories_OrgActionItemCategories.md | 23 ----------- ...Categories_OrgActionItemCategories_test.md | 3 -- ...emCategories_OrgActionItemCategoryMocks.md | 41 ------------------- ...nents_OrgAdminListCard_OrgAdminListCard.md | 2 +- ...omponents_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../components_OrgListCard_OrgListCard.md | 2 +- ...nts_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../components_OrgPostCard_OrgPostCard.md | 2 +- ...leFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../components_OrgUpdate_OrgUpdateMocks.md | 10 ++--- ...nizationCardStart_OrganizationCardStart.md | 2 +- ...nents_OrganizationCard_OrganizationCard.md | 2 +- ...mponents_OrganizationDashCards_CardItem.md | 2 +- ...s_OrganizationDashCards_CardItemLoading.md | 2 +- ...nts_OrganizationDashCards_DashboardCard.md | 2 +- ...anizationDashCards_DashboardCardLoading.md | 2 +- ...s_OrganizationScreen_OrganizationScreen.md | 2 +- ...omponents_PaginationList_PaginationList.md | 2 +- .../components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...nents_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...s_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- ...components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...ents_UserPortal_CommentCard_CommentCard.md | 2 +- ...ents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ts_UserPortal_DonationCard_DonationCard.md | 2 +- ...mponents_UserPortal_EventCard_EventCard.md | 2 +- .../components_UserPortal_Login_Login.md | 2 +- ...ortal_OrganizationCard_OrganizationCard.md | 2 +- ...l_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...OrganizationSidebar_OrganizationSidebar.md | 2 +- ...onents_UserPortal_PeopleCard_PeopleCard.md | 2 +- ...components_UserPortal_PostCard_PostCard.md | 2 +- ...ts_UserPortal_PromotedPost_PromotedPost.md | 2 +- ...components_UserPortal_Register_Register.md | 2 +- ...SecuredRouteForUser_SecuredRouteForUser.md | 2 +- ...onents_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...ents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../components_UserUpdate_UserUpdate.md | 2 +- ...nents_UsersTableItem_UserTableItemMocks.md | 4 +- ...omponents_UsersTableItem_UsersTableItem.md | 2 +- ...nents_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- ...ponents_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- ...ens_EventDashboard_EventDashboard_mocks.md | 4 +- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../screens_MemberDetail_MemberDetail.md | 6 +-- ...screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 10 ++--- .../screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../screens_OrgSettings_OrgSettings.md | 2 +- ...nizationDashboard_OrganizationDashboard.md | 2 +- ...ionDashboard_OrganizationDashboardMocks.md | 6 +-- ...s_OrganizationEvents_OrganizationEvents.md | 2 +- ...s_OrganizationPeople_OrganizationPeople.md | 2 +- .../screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../screens_UserPortal_Donate_Donate.md | 2 +- .../screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ..._UserPortal_Organizations_Organizations.md | 2 +- .../screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ..._UserPortal_UserLoginPage_UserLoginPage.md | 2 +- .../modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +-- 135 files changed, 191 insertions(+), 261 deletions(-) delete mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md delete mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index 3428246dbb..31189c706c 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index 34177e5dd8..29922c23d5 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index 349f706aee..eb47c5bd4e 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index c268264e44..9ecfe473e1 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index aa8fef33bc..2fa711670a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index 7240b0d5ba..e87af3ecc3 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index 17e3e0ab64..390a79948f 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index 371337dbfa..877cb3ff5a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index e7b891af85..a94bf4c9bf 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index d675f82311..a8669a5913 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index 27ef214dbd..2323d9e1b9 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index 843e47bd00..231bd29f60 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index 40b053830f..4ba897ae0f 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index 4b4d1aca45..d1fc895d2d 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index 27134b61ec..9d46c92019 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index fb59797658..7ccadce5c2 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index 4ad261d7a3..5efc787028 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 967f8cf6f6..1b6a706c65 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index e8935e1e4b..f6f3b33975 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index 0bc61c7726..e545773409 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules.md b/talawa-admin-docs/modules.md index 277f14bea9..8abc529b22 100644 --- a/talawa-admin-docs/modules.md +++ b/talawa-admin-docs/modules.md @@ -86,9 +86,6 @@ - [components/MemberRequestCard/MemberRequestCard.test](modules/components_MemberRequestCard_MemberRequestCard_test.md) - [components/NotFound/NotFound](modules/components_NotFound_NotFound.md) - [components/NotFound/NotFound.test](modules/components_NotFound_NotFound_test.md) -- [components/OrgActionItemCategories/OrgActionItemCategories](modules/components_OrgActionItemCategories_OrgActionItemCategories.md) -- [components/OrgActionItemCategories/OrgActionItemCategories.test](modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md) -- [components/OrgActionItemCategories/OrgActionItemCategoryMocks](modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md) - [components/OrgAdminListCard/OrgAdminListCard](modules/components_OrgAdminListCard_OrgAdminListCard.md) - [components/OrgAdminListCard/OrgAdminListCard.test](modules/components_OrgAdminListCard_OrgAdminListCard_test.md) - [components/OrgContriCards/OrgContriCards](modules/components_OrgContriCards_OrgContriCards.md) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index f0aad13888..7708f3efc0 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index b770fed424..d5d4096e0d 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index f70d80cfd1..2a0b34d8cf 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index 1b9b3b0003..d6f1d0ac38 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index 6d44a8ab93..09c5ab3380 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index 37e0960913..f93d3d6b94 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index f2731c1584..af9faef144 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index c8a3c18b18..c9411bcff6 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index a3e620c367..17e75d0708 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index 07906d1ca9..22f50c02b7 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index 64de8567b6..5a91b6e729 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index 118ec0338a..44f300753c 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index 1b2413fb30..ccee8edbae 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index ba5e942af3..9bee87f600 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index fa11e97fc2..aceaaf32f1 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index 0b9b66a535..209120d33e 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index 58434d0f47..97a50ec9f6 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index 895ca6714d..0811628058 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index e10abd5bbf..07484f6961 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 8bea1a41ad..6996074140 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index 0f56449053..2b688e769e 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index 4e3399e510..740b3130a9 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index 1c6e9d76d9..be0467b5cb 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index 0aac0060f7..d2df808a4e 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index da2a91c93f..a8458ded95 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index b11f7541a3..32d3c032d5 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index 47925f17f6..2278652afb 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index 4c57afb8f5..d8f65115de 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index b92cb52257..2970784a82 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index 8d41d64131..d6c62473e2 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index 7544f0c3c9..2260ddfa76 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index 27a557f56b..bc862524a0 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index f52caf855a..2305d3dbad 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index 5b82e5ee73..e2b5d4d9a6 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index a9966af4ed..6d0b7b40de 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index b492d4324f..ae7da72814 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index 02ce18b114..dd36c8b540 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index 9d95168fa4..e7d0d13510 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index e63e8c843c..62629fd66c 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index 75129d07b1..3c27d00110 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md deleted file mode 100644 index 4299352484..0000000000 --- a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md +++ /dev/null @@ -1,23 +0,0 @@ -[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories - -# Module: components/OrgActionItemCategories/OrgActionItemCategories - -## Table of contents - -### Functions - -- [default](components_OrgActionItemCategories_OrgActionItemCategories.md#default) - -## Functions - -### default - -▸ **default**(): `any` - -#### Returns - -`any` - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategories.tsx:20](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx#L20) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md deleted file mode 100644 index dc005c10a5..0000000000 --- a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md +++ /dev/null @@ -1,3 +0,0 @@ -[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories.test - -# Module: components/OrgActionItemCategories/OrgActionItemCategories.test diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md deleted file mode 100644 index 7b28eee72a..0000000000 --- a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md +++ /dev/null @@ -1,41 +0,0 @@ -[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategoryMocks - -# Module: components/OrgActionItemCategories/OrgActionItemCategoryMocks - -## Table of contents - -### Variables - -- [MOCKS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks) -- [MOCKS\_ERROR\_MUTATIONS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_mutations) -- [MOCKS\_ERROR\_QUERY](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_query) - -## Variables - -### MOCKS - -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory`: \{ `_id`: `string` = '4' \} ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \})[] - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L8) - -___ - -### MOCKS\_ERROR\_MUTATIONS - -• `Const` **MOCKS\_ERROR\_MUTATIONS**: (\{ `error?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] \} \} \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \})[] - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L109) - -___ - -### MOCKS\_ERROR\_QUERY - -• `Const` **MOCKS\_ERROR\_QUERY**: \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `organizationId`: `string` = '123' \} \} \}[] - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:99](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L99) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index d7853205ac..a502f77abd 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index 3efc41bdf8..7793777b0d 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index 3ae9c4acf0..128d528006 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index 0ed8c38a14..18bfd4460b 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index a9b63f1189..3bfe921cb6 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index 5ad47a9e53..abd4ea5663 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index 7724d78e28..24633b513a 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index e9ccc40dc6..f3671db7f1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index 43e537e812..356df928c1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -14,11 +14,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,14 +28,14 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ ### MOCKS\_ERROR\_UPDATE\_ORGLIST -• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] +• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index ebb5cefa3f..1f3d0f7f15 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index 9fcb4bde5f..e72bc4b169 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index 20b7617bd6..149ddf73b5 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index 3430cabf23..c837ff6ae3 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 0d70f87627..4874366105 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index 713114c5f8..48551c741d 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index 18475e198d..8abc38e92f 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index 4f127449db..2b35c78487 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index a274c55a43..d4d4be6cd8 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index f26afba629..1f48f3cb87 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index f8e9874042..11c00f6131 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index d01f329b67..9874a5c25e 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index 00082ff39f..f8f040f88e 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 5ec073ecf3..517a6d692f 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index e88d7d0556..84480b9f02 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index 1c90f574b1..9d36774a58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index da6ef0df1d..f40934d0f8 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index ac80ac7440..c40b5fd806 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index 279438267c..564eb9afa7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index 7342eabebc..4b80b3969f 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index 5f15531331..c7b1e8643e 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index bd46c6208d..492e7a44c7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index 62b817922c..6902fe678a 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index bc837d8e02..a3497d6bca 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index 91095cbf49..533ef95663 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index 1f7b9f28d7..8ce7350f58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index e03951bd4f..7865759c03 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index cefd3e94f2..b834c74894 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index a469755471..265a3d12ef 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index 0a7e625793..d31979578d 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index fb04242d67..6e9f01258e 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index fdb8c8caa3..85305b69e0 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -12,8 +12,8 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = '123'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = '123'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = 'abc'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = 'abc'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index 9a3eae50c8..c1e49109f4 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index 91e2944b20..f35bdef35a 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index dcaecb4ddf..dfc53edd9f 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index 9c97cd5542..631fb56671 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index 855ec4ca1a..33bbf8f7ec 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index 3aeed979e3..55d32ca1f5 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index 25bfb9563c..b326d5e77f 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 523813b373..75b2f9d03a 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index 8c65ebb485..3775c53c7c 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index e8b97abce8..c9f5d05463 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index 11beab3b0c..04775362ee 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index 3e6a37562e..95d493570c 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -15,11 +15,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 812d988af2..70df93939d 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index c16e08343e..a21030a9eb 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index 3861125e47..7ea5d95389 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrgSettings/OrgSettings.tsx#L16) +[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index e1596967d8..7fb0774b3c 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index 1e2a4375dd..58a98c70e1 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index 9bb24810f0..5ea99e50ac 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index e5b8424369..6169d2109b 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index f73aa79c7d..580ae063d3 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index df56da796e..314d6c9dfd 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index 9284c48043..ebd7721aa6 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index 48190bfa98..b99b7dca32 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index 2ff4742d59..c3820ac902 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index 358598a166..c59cfe6ad9 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 9fbce2bf8d..8e7d871987 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index f8eef54921..fb7a967028 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index 7280631a78..ddb0371bf4 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index d782cf182e..a87c93404e 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index a30c471b0c..31b72fc622 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/meetulr/talawa-admin/blob/e3073a7/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) From 42936271a2ba048515dd23859a4976ff88070673 Mon Sep 17 00:00:00 2001 From: meetulr Date: Sun, 11 Feb 2024 10:54:23 +0000 Subject: [PATCH 10/14] Update documentation --- ..._support_services_Plugin_helper.default.md | 6 +-- ...ts_EventCalendar_EventCalendar.ViewType.md | 4 +- ..._CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +-- ...In_types.InterfaceAttendeeQueryResponse.md | 2 +- ...onents_CheckIn_types.InterfaceModalProp.md | 6 +-- ...nts_CheckIn_types.InterfaceTableCheckIn.md | 10 ++--- ...onents_CheckIn_types.InterfaceTableData.md | 6 +-- .../components_CheckIn_types.InterfaceUser.md | 6 +-- ...leDropdown.InterfaceCollapsibleDropdown.md | 4 +- ...nt_IconComponent.InterfaceIconComponent.md | 8 ++-- ...eftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +-- ...eftDrawerEventWrapper.InterfacePropType.md | 4 +- ..._LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 ++--- ...wer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +-- ...d_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...eFieldSettings.InterfaceCustomFieldData.md | 4 +- ...ionDashCards_CardItem.InterfaceCardItem.md | 14 +++---- ...Screen.InterfaceOrganizationScreenProps.md | 6 +-- ...inScreen.InterfaceSuperAdminScreenProps.md | 6 +-- ...Loader_TableLoader.InterfaceTableLoader.md | 6 +-- talawa-admin-docs/modules.md | 3 ++ .../modules/components_AddOn_AddOn.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...s_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ..._AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- ...onents_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ..._AddOn_support_components_Action_Action.md | 2 +- ...port_components_MainContent_MainContent.md | 2 +- ..._support_components_SidePanel_SidePanel.md | 2 +- ...omponents_Advertisements_Advertisements.md | 2 +- ...e_AdvertisementEntry_AdvertisementEntry.md | 2 +- ...rtisementRegister_AdvertisementRegister.md | 2 +- ...LanguageDropdown_ChangeLanguageDropDown.md | 4 +- .../components_CheckIn_CheckInModal.md | 2 +- .../components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +-- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../components_ContriStats_ContriStats.md | 2 +- ...rrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...omFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ...tRegistrantsModal_EventRegistrantsModal.md | 2 +- ...egistrantsModal_EventRegistrantsWrapper.md | 2 +- .../components_EventStats_EventStats.md | 2 +- ...components_EventStats_EventStatsWrapper.md | 2 +- ...nts_EventStats_Statistics_AverageRating.md | 2 +- ...mponents_EventStats_Statistics_Feedback.md | 2 +- ...components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- ...ponents_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ..._LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...nts_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...nts_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...nItemCategories_OrgActionItemCategories.md | 23 +++++++++++ ...Categories_OrgActionItemCategories_test.md | 3 ++ ...emCategories_OrgActionItemCategoryMocks.md | 41 +++++++++++++++++++ ...nents_OrgAdminListCard_OrgAdminListCard.md | 2 +- ...omponents_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../components_OrgListCard_OrgListCard.md | 2 +- ...nts_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../components_OrgPostCard_OrgPostCard.md | 2 +- ...leFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../components_OrgUpdate_OrgUpdateMocks.md | 10 ++--- ...nizationCardStart_OrganizationCardStart.md | 2 +- ...nents_OrganizationCard_OrganizationCard.md | 2 +- ...mponents_OrganizationDashCards_CardItem.md | 2 +- ...s_OrganizationDashCards_CardItemLoading.md | 2 +- ...nts_OrganizationDashCards_DashboardCard.md | 2 +- ...anizationDashCards_DashboardCardLoading.md | 2 +- ...s_OrganizationScreen_OrganizationScreen.md | 2 +- ...omponents_PaginationList_PaginationList.md | 2 +- .../components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...nents_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...s_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- ...components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...ents_UserPortal_CommentCard_CommentCard.md | 2 +- ...ents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ts_UserPortal_DonationCard_DonationCard.md | 2 +- ...mponents_UserPortal_EventCard_EventCard.md | 2 +- .../components_UserPortal_Login_Login.md | 2 +- ...ortal_OrganizationCard_OrganizationCard.md | 2 +- ...l_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...OrganizationSidebar_OrganizationSidebar.md | 2 +- ...onents_UserPortal_PeopleCard_PeopleCard.md | 2 +- ...components_UserPortal_PostCard_PostCard.md | 2 +- ...ts_UserPortal_PromotedPost_PromotedPost.md | 2 +- ...components_UserPortal_Register_Register.md | 2 +- ...SecuredRouteForUser_SecuredRouteForUser.md | 2 +- ...onents_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...ents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../components_UserUpdate_UserUpdate.md | 2 +- ...nents_UsersTableItem_UserTableItemMocks.md | 4 +- ...omponents_UsersTableItem_UsersTableItem.md | 2 +- ...nents_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- ...ponents_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- ...ens_EventDashboard_EventDashboard_mocks.md | 4 +- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../screens_MemberDetail_MemberDetail.md | 6 +-- ...screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 10 ++--- .../screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../screens_OrgSettings_OrgSettings.md | 2 +- ...nizationDashboard_OrganizationDashboard.md | 2 +- ...ionDashboard_OrganizationDashboardMocks.md | 6 +-- ...s_OrganizationEvents_OrganizationEvents.md | 2 +- ...s_OrganizationPeople_OrganizationPeople.md | 2 +- .../screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../screens_UserPortal_Donate_Donate.md | 2 +- .../screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ..._UserPortal_Organizations_Organizations.md | 2 +- .../screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ..._UserPortal_UserLoginPage_UserLoginPage.md | 2 +- .../modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +-- 135 files changed, 261 insertions(+), 191 deletions(-) create mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md create mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md create mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index 31189c706c..ae5b5aabac 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index 29922c23d5..7a2323b6cf 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index eb47c5bd4e..a9c1e7c5ea 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index 9ecfe473e1..eaeab42e0f 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index 2fa711670a..21c2ce6985 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index e87af3ecc3..627e719f05 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index 390a79948f..ee07e2e3a2 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index 877cb3ff5a..cf27a36c92 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index a94bf4c9bf..7315164b82 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index a8669a5913..c7c125e85b 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index 2323d9e1b9..1f23937715 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index 231bd29f60..f5f6ed63de 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index 4ba897ae0f..3343a5012b 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index d1fc895d2d..0f96ef0965 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index 9d46c92019..d90dd1e0eb 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index 7ccadce5c2..91b7a14496 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index 5efc787028..dc969559b8 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 1b6a706c65..93438bc4ca 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index f6f3b33975..34b3722566 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index e545773409..343f40cbd1 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules.md b/talawa-admin-docs/modules.md index 8abc529b22..277f14bea9 100644 --- a/talawa-admin-docs/modules.md +++ b/talawa-admin-docs/modules.md @@ -86,6 +86,9 @@ - [components/MemberRequestCard/MemberRequestCard.test](modules/components_MemberRequestCard_MemberRequestCard_test.md) - [components/NotFound/NotFound](modules/components_NotFound_NotFound.md) - [components/NotFound/NotFound.test](modules/components_NotFound_NotFound_test.md) +- [components/OrgActionItemCategories/OrgActionItemCategories](modules/components_OrgActionItemCategories_OrgActionItemCategories.md) +- [components/OrgActionItemCategories/OrgActionItemCategories.test](modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md) +- [components/OrgActionItemCategories/OrgActionItemCategoryMocks](modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md) - [components/OrgAdminListCard/OrgAdminListCard](modules/components_OrgAdminListCard_OrgAdminListCard.md) - [components/OrgAdminListCard/OrgAdminListCard.test](modules/components_OrgAdminListCard_OrgAdminListCard_test.md) - [components/OrgContriCards/OrgContriCards](modules/components_OrgContriCards_OrgContriCards.md) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index 7708f3efc0..e307a9297e 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index d5d4096e0d..7fc1b4474a 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index 2a0b34d8cf..d3e39a4a9f 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index d6f1d0ac38..5e1e8d8858 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index 09c5ab3380..f9df7f8f03 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index f93d3d6b94..1a62222550 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index af9faef144..b8eb6bb7de 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index c9411bcff6..aa30f46759 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index 17e75d0708..92f1bbc764 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index 22f50c02b7..f1a356a511 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index 5a91b6e729..46bcc8a1da 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index 44f300753c..140f703dc5 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index ccee8edbae..3abe108c76 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index 9bee87f600..ae98f9f9d7 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index aceaaf32f1..64284b8b99 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index 209120d33e..00c85145de 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index 97a50ec9f6..85bdd5731a 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index 0811628058..9ecf11c9e7 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index 07484f6961..455db32463 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 6996074140..5a0df008b8 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index 2b688e769e..9e8ab1d331 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index 740b3130a9..3f819031bf 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index be0467b5cb..7840dc0432 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index d2df808a4e..c1d19b3e34 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index a8458ded95..f4e80d6979 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index 32d3c032d5..4e8c6ebd01 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index 2278652afb..f5965065f8 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index d8f65115de..c9c6eb02cd 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index 2970784a82..5cd8b95d50 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index d6c62473e2..6490fa75fc 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index 2260ddfa76..ce5a73eb15 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index bc862524a0..211172f172 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index 2305d3dbad..b3f96c7a97 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index e2b5d4d9a6..4444299789 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index 6d0b7b40de..987eec5e20 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index ae7da72814..bbcd351737 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index dd36c8b540..18b59fda9b 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index e7d0d13510..9e60c02569 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index 62629fd66c..35282173e7 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index 3c27d00110..615dd30bfa 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md new file mode 100644 index 0000000000..f7ede36cfd --- /dev/null +++ b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md @@ -0,0 +1,23 @@ +[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories + +# Module: components/OrgActionItemCategories/OrgActionItemCategories + +## Table of contents + +### Functions + +- [default](components_OrgActionItemCategories_OrgActionItemCategories.md#default) + +## Functions + +### default + +▸ **default**(): `any` + +#### Returns + +`any` + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategories.tsx:20](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx#L20) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md new file mode 100644 index 0000000000..dc005c10a5 --- /dev/null +++ b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md @@ -0,0 +1,3 @@ +[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories.test + +# Module: components/OrgActionItemCategories/OrgActionItemCategories.test diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md new file mode 100644 index 0000000000..32d2e58f51 --- /dev/null +++ b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md @@ -0,0 +1,41 @@ +[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategoryMocks + +# Module: components/OrgActionItemCategories/OrgActionItemCategoryMocks + +## Table of contents + +### Variables + +- [MOCKS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks) +- [MOCKS\_ERROR\_MUTATIONS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_mutations) +- [MOCKS\_ERROR\_QUERY](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_query) + +## Variables + +### MOCKS + +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory`: \{ `_id`: `string` = '4' \} ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \})[] + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L8) + +___ + +### MOCKS\_ERROR\_MUTATIONS + +• `Const` **MOCKS\_ERROR\_MUTATIONS**: (\{ `error?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] \} \} \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \})[] + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L109) + +___ + +### MOCKS\_ERROR\_QUERY + +• `Const` **MOCKS\_ERROR\_QUERY**: \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `organizationId`: `string` = '123' \} \} \}[] + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:99](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L99) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index a502f77abd..580c2b1912 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index 7793777b0d..fb3001e1e9 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index 128d528006..ecedbb47b2 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index 18bfd4460b..83bef6fb89 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index 3bfe921cb6..e705f43a2e 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index abd4ea5663..c3f3deb0d9 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index 24633b513a..6cde796e28 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index f3671db7f1..9892a3dfde 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index 356df928c1..ae98b59e31 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -14,11 +14,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,14 +28,14 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ ### MOCKS\_ERROR\_UPDATE\_ORGLIST -• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] +• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index 1f3d0f7f15..a989814a1c 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index e72bc4b169..504689d13c 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index 149ddf73b5..3507527407 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index c837ff6ae3..09aaf227cd 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 4874366105..83debbca06 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index 48551c741d..039b0b2aa9 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index 8abc38e92f..32c91682bc 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index 2b35c78487..0632a3a1d2 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index d4d4be6cd8..f3c7809f1a 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index 1f48f3cb87..cab129ba44 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index 11c00f6131..6dce1e0fdb 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index 9874a5c25e..bea65b52aa 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index f8f040f88e..eac7983e32 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 517a6d692f..3435929726 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index 84480b9f02..655205d809 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index 9d36774a58..0367afd610 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index f40934d0f8..90e3a1eb11 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index c40b5fd806..e300adf5cd 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index 564eb9afa7..ef7f9d750e 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index 4b80b3969f..770be8fbf1 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index c7b1e8643e..13c83b6837 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index 492e7a44c7..27af1006b9 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index 6902fe678a..db61fc5440 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index a3497d6bca..129acd645e 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index 533ef95663..f87d28cc37 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index 8ce7350f58..ba44c6b78c 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index 7865759c03..3adcdf770a 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index b834c74894..89f225e0f6 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index 265a3d12ef..1df697cb4d 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index d31979578d..99952e11e3 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index 6e9f01258e..e54ff28957 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index 85305b69e0..c1efe18498 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -12,8 +12,8 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = 'abc'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = 'abc'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = '123'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = '123'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index c1e49109f4..3a03e527b0 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index f35bdef35a..13ddd324e6 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index dfc53edd9f..75dc88e6ec 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index 631fb56671..3a1240ca0d 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index 33bbf8f7ec..424dff6074 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index 55d32ca1f5..8785c788f0 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index b326d5e77f..9f1a882c74 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 75b2f9d03a..249b4969d3 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index 3775c53c7c..d6c8fed5c0 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index c9f5d05463..fb8de692d1 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index 04775362ee..af8a9d9df2 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index 95d493570c..40b44121d3 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -15,11 +15,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 70df93939d..3510732003 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index a21030a9eb..84447523a1 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index 7ea5d95389..0a7e4e1cb0 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) +[src/screens/OrgSettings/OrgSettings.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgSettings/OrgSettings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index 7fb0774b3c..4310f1a595 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index 58a98c70e1..530fa2843e 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index 5ea99e50ac..e6e678a5a8 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index 6169d2109b..b6334c4de1 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index 580ae063d3..9a56fa767d 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index 314d6c9dfd..4775fe8954 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index ebd7721aa6..bde087171c 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index b99b7dca32..93b88b9dc9 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index c3820ac902..d25c2ae4cd 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index c59cfe6ad9..c91f8bf02c 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 8e7d871987..db85844433 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index fb7a967028..acff3e6fe6 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index ddb0371bf4..b502e24ad5 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index a87c93404e..1b31a7bc79 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index 31b72fc622..d5c73a286a 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/Users/UsersMocks.ts#L233) From 40ecfbe260c1b8a78740e7d6116d0cbea65c8667 Mon Sep 17 00:00:00 2001 From: meetul Date: Sun, 11 Feb 2024 17:08:00 +0530 Subject: [PATCH 11/14] Revert "Update documentation" This reverts commit 42936271a2ba048515dd23859a4976ff88070673. --- ..._support_services_Plugin_helper.default.md | 6 +-- ...ts_EventCalendar_EventCalendar.ViewType.md | 4 +- ..._CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +-- ...In_types.InterfaceAttendeeQueryResponse.md | 2 +- ...onents_CheckIn_types.InterfaceModalProp.md | 6 +-- ...nts_CheckIn_types.InterfaceTableCheckIn.md | 10 ++--- ...onents_CheckIn_types.InterfaceTableData.md | 6 +-- .../components_CheckIn_types.InterfaceUser.md | 6 +-- ...leDropdown.InterfaceCollapsibleDropdown.md | 4 +- ...nt_IconComponent.InterfaceIconComponent.md | 8 ++-- ...eftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +-- ...eftDrawerEventWrapper.InterfacePropType.md | 4 +- ..._LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 ++--- ...wer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +-- ...d_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...eFieldSettings.InterfaceCustomFieldData.md | 4 +- ...ionDashCards_CardItem.InterfaceCardItem.md | 14 +++---- ...Screen.InterfaceOrganizationScreenProps.md | 6 +-- ...inScreen.InterfaceSuperAdminScreenProps.md | 6 +-- ...Loader_TableLoader.InterfaceTableLoader.md | 6 +-- talawa-admin-docs/modules.md | 3 -- .../modules/components_AddOn_AddOn.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...s_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ..._AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- ...onents_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ..._AddOn_support_components_Action_Action.md | 2 +- ...port_components_MainContent_MainContent.md | 2 +- ..._support_components_SidePanel_SidePanel.md | 2 +- ...omponents_Advertisements_Advertisements.md | 2 +- ...e_AdvertisementEntry_AdvertisementEntry.md | 2 +- ...rtisementRegister_AdvertisementRegister.md | 2 +- ...LanguageDropdown_ChangeLanguageDropDown.md | 4 +- .../components_CheckIn_CheckInModal.md | 2 +- .../components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +-- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../components_ContriStats_ContriStats.md | 2 +- ...rrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...omFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ...tRegistrantsModal_EventRegistrantsModal.md | 2 +- ...egistrantsModal_EventRegistrantsWrapper.md | 2 +- .../components_EventStats_EventStats.md | 2 +- ...components_EventStats_EventStatsWrapper.md | 2 +- ...nts_EventStats_Statistics_AverageRating.md | 2 +- ...mponents_EventStats_Statistics_Feedback.md | 2 +- ...components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- ...ponents_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ..._LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...nts_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...nts_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...nItemCategories_OrgActionItemCategories.md | 23 ----------- ...Categories_OrgActionItemCategories_test.md | 3 -- ...emCategories_OrgActionItemCategoryMocks.md | 41 ------------------- ...nents_OrgAdminListCard_OrgAdminListCard.md | 2 +- ...omponents_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../components_OrgListCard_OrgListCard.md | 2 +- ...nts_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../components_OrgPostCard_OrgPostCard.md | 2 +- ...leFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../components_OrgUpdate_OrgUpdateMocks.md | 10 ++--- ...nizationCardStart_OrganizationCardStart.md | 2 +- ...nents_OrganizationCard_OrganizationCard.md | 2 +- ...mponents_OrganizationDashCards_CardItem.md | 2 +- ...s_OrganizationDashCards_CardItemLoading.md | 2 +- ...nts_OrganizationDashCards_DashboardCard.md | 2 +- ...anizationDashCards_DashboardCardLoading.md | 2 +- ...s_OrganizationScreen_OrganizationScreen.md | 2 +- ...omponents_PaginationList_PaginationList.md | 2 +- .../components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...nents_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...s_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- ...components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...ents_UserPortal_CommentCard_CommentCard.md | 2 +- ...ents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ts_UserPortal_DonationCard_DonationCard.md | 2 +- ...mponents_UserPortal_EventCard_EventCard.md | 2 +- .../components_UserPortal_Login_Login.md | 2 +- ...ortal_OrganizationCard_OrganizationCard.md | 2 +- ...l_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...OrganizationSidebar_OrganizationSidebar.md | 2 +- ...onents_UserPortal_PeopleCard_PeopleCard.md | 2 +- ...components_UserPortal_PostCard_PostCard.md | 2 +- ...ts_UserPortal_PromotedPost_PromotedPost.md | 2 +- ...components_UserPortal_Register_Register.md | 2 +- ...SecuredRouteForUser_SecuredRouteForUser.md | 2 +- ...onents_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...ents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../components_UserUpdate_UserUpdate.md | 2 +- ...nents_UsersTableItem_UserTableItemMocks.md | 4 +- ...omponents_UsersTableItem_UsersTableItem.md | 2 +- ...nents_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- ...ponents_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- ...ens_EventDashboard_EventDashboard_mocks.md | 4 +- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../screens_MemberDetail_MemberDetail.md | 6 +-- ...screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 10 ++--- .../screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../screens_OrgSettings_OrgSettings.md | 2 +- ...nizationDashboard_OrganizationDashboard.md | 2 +- ...ionDashboard_OrganizationDashboardMocks.md | 6 +-- ...s_OrganizationEvents_OrganizationEvents.md | 2 +- ...s_OrganizationPeople_OrganizationPeople.md | 2 +- .../screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../screens_UserPortal_Donate_Donate.md | 2 +- .../screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ..._UserPortal_Organizations_Organizations.md | 2 +- .../screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ..._UserPortal_UserLoginPage_UserLoginPage.md | 2 +- .../modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +-- 135 files changed, 191 insertions(+), 261 deletions(-) delete mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md delete mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index ae5b5aabac..31189c706c 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index 7a2323b6cf..29922c23d5 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index a9c1e7c5ea..eb47c5bd4e 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index eaeab42e0f..9ecfe473e1 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index 21c2ce6985..2fa711670a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index 627e719f05..e87af3ecc3 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index ee07e2e3a2..390a79948f 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index cf27a36c92..877cb3ff5a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index 7315164b82..a94bf4c9bf 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index c7c125e85b..a8669a5913 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index 1f23937715..2323d9e1b9 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index f5f6ed63de..231bd29f60 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index 3343a5012b..4ba897ae0f 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index 0f96ef0965..d1fc895d2d 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index d90dd1e0eb..9d46c92019 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index 91b7a14496..7ccadce5c2 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index dc969559b8..5efc787028 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 93438bc4ca..1b6a706c65 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index 34b3722566..f6f3b33975 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index 343f40cbd1..e545773409 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules.md b/talawa-admin-docs/modules.md index 277f14bea9..8abc529b22 100644 --- a/talawa-admin-docs/modules.md +++ b/talawa-admin-docs/modules.md @@ -86,9 +86,6 @@ - [components/MemberRequestCard/MemberRequestCard.test](modules/components_MemberRequestCard_MemberRequestCard_test.md) - [components/NotFound/NotFound](modules/components_NotFound_NotFound.md) - [components/NotFound/NotFound.test](modules/components_NotFound_NotFound_test.md) -- [components/OrgActionItemCategories/OrgActionItemCategories](modules/components_OrgActionItemCategories_OrgActionItemCategories.md) -- [components/OrgActionItemCategories/OrgActionItemCategories.test](modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md) -- [components/OrgActionItemCategories/OrgActionItemCategoryMocks](modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md) - [components/OrgAdminListCard/OrgAdminListCard](modules/components_OrgAdminListCard_OrgAdminListCard.md) - [components/OrgAdminListCard/OrgAdminListCard.test](modules/components_OrgAdminListCard_OrgAdminListCard_test.md) - [components/OrgContriCards/OrgContriCards](modules/components_OrgContriCards_OrgContriCards.md) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index e307a9297e..7708f3efc0 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index 7fc1b4474a..d5d4096e0d 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index d3e39a4a9f..2a0b34d8cf 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index 5e1e8d8858..d6f1d0ac38 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index f9df7f8f03..09c5ab3380 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index 1a62222550..f93d3d6b94 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index b8eb6bb7de..af9faef144 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index aa30f46759..c9411bcff6 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index 92f1bbc764..17e75d0708 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index f1a356a511..22f50c02b7 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index 46bcc8a1da..5a91b6e729 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index 140f703dc5..44f300753c 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index 3abe108c76..ccee8edbae 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index ae98f9f9d7..9bee87f600 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index 64284b8b99..aceaaf32f1 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index 00c85145de..209120d33e 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index 85bdd5731a..97a50ec9f6 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index 9ecf11c9e7..0811628058 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index 455db32463..07484f6961 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 5a0df008b8..6996074140 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index 9e8ab1d331..2b688e769e 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index 3f819031bf..740b3130a9 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index 7840dc0432..be0467b5cb 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index c1d19b3e34..d2df808a4e 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index f4e80d6979..a8458ded95 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index 4e8c6ebd01..32d3c032d5 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index f5965065f8..2278652afb 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index c9c6eb02cd..d8f65115de 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index 5cd8b95d50..2970784a82 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index 6490fa75fc..d6c62473e2 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index ce5a73eb15..2260ddfa76 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index 211172f172..bc862524a0 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index b3f96c7a97..2305d3dbad 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index 4444299789..e2b5d4d9a6 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index 987eec5e20..6d0b7b40de 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index bbcd351737..ae7da72814 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index 18b59fda9b..dd36c8b540 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index 9e60c02569..e7d0d13510 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index 35282173e7..62629fd66c 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index 615dd30bfa..3c27d00110 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md deleted file mode 100644 index f7ede36cfd..0000000000 --- a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md +++ /dev/null @@ -1,23 +0,0 @@ -[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories - -# Module: components/OrgActionItemCategories/OrgActionItemCategories - -## Table of contents - -### Functions - -- [default](components_OrgActionItemCategories_OrgActionItemCategories.md#default) - -## Functions - -### default - -▸ **default**(): `any` - -#### Returns - -`any` - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategories.tsx:20](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx#L20) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md deleted file mode 100644 index dc005c10a5..0000000000 --- a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md +++ /dev/null @@ -1,3 +0,0 @@ -[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories.test - -# Module: components/OrgActionItemCategories/OrgActionItemCategories.test diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md deleted file mode 100644 index 32d2e58f51..0000000000 --- a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md +++ /dev/null @@ -1,41 +0,0 @@ -[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategoryMocks - -# Module: components/OrgActionItemCategories/OrgActionItemCategoryMocks - -## Table of contents - -### Variables - -- [MOCKS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks) -- [MOCKS\_ERROR\_MUTATIONS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_mutations) -- [MOCKS\_ERROR\_QUERY](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_query) - -## Variables - -### MOCKS - -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory`: \{ `_id`: `string` = '4' \} ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \})[] - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L8) - -___ - -### MOCKS\_ERROR\_MUTATIONS - -• `Const` **MOCKS\_ERROR\_MUTATIONS**: (\{ `error?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] \} \} \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \})[] - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L109) - -___ - -### MOCKS\_ERROR\_QUERY - -• `Const` **MOCKS\_ERROR\_QUERY**: \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `organizationId`: `string` = '123' \} \} \}[] - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:99](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L99) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index 580c2b1912..a502f77abd 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index fb3001e1e9..7793777b0d 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index ecedbb47b2..128d528006 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index 83bef6fb89..18bfd4460b 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index e705f43a2e..3bfe921cb6 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index c3f3deb0d9..abd4ea5663 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index 6cde796e28..24633b513a 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index 9892a3dfde..f3671db7f1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index ae98b59e31..356df928c1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -14,11 +14,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,14 +28,14 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ ### MOCKS\_ERROR\_UPDATE\_ORGLIST -• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] +• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index a989814a1c..1f3d0f7f15 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index 504689d13c..e72bc4b169 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index 3507527407..149ddf73b5 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index 09aaf227cd..c837ff6ae3 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 83debbca06..4874366105 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index 039b0b2aa9..48551c741d 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index 32c91682bc..8abc38e92f 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index 0632a3a1d2..2b35c78487 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index f3c7809f1a..d4d4be6cd8 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index cab129ba44..1f48f3cb87 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index 6dce1e0fdb..11c00f6131 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index bea65b52aa..9874a5c25e 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index eac7983e32..f8f040f88e 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 3435929726..517a6d692f 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index 655205d809..84480b9f02 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index 0367afd610..9d36774a58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index 90e3a1eb11..f40934d0f8 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index e300adf5cd..c40b5fd806 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index ef7f9d750e..564eb9afa7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index 770be8fbf1..4b80b3969f 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index 13c83b6837..c7b1e8643e 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index 27af1006b9..492e7a44c7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index db61fc5440..6902fe678a 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index 129acd645e..a3497d6bca 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index f87d28cc37..533ef95663 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index ba44c6b78c..8ce7350f58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index 3adcdf770a..7865759c03 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index 89f225e0f6..b834c74894 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index 1df697cb4d..265a3d12ef 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index 99952e11e3..d31979578d 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index e54ff28957..6e9f01258e 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index c1efe18498..85305b69e0 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -12,8 +12,8 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = '123'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = '123'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = 'abc'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = 'abc'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index 3a03e527b0..c1e49109f4 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index 13ddd324e6..f35bdef35a 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index 75dc88e6ec..dfc53edd9f 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index 3a1240ca0d..631fb56671 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index 424dff6074..33bbf8f7ec 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index 8785c788f0..55d32ca1f5 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index 9f1a882c74..b326d5e77f 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 249b4969d3..75b2f9d03a 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index d6c8fed5c0..3775c53c7c 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index fb8de692d1..c9f5d05463 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index af8a9d9df2..04775362ee 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index 40b44121d3..95d493570c 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -15,11 +15,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 3510732003..70df93939d 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index 84447523a1..a21030a9eb 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index 0a7e4e1cb0..7ea5d95389 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrgSettings/OrgSettings.tsx#L16) +[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index 4310f1a595..7fb0774b3c 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index 530fa2843e..58a98c70e1 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index e6e678a5a8..5ea99e50ac 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index b6334c4de1..6169d2109b 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index 9a56fa767d..580ae063d3 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index 4775fe8954..314d6c9dfd 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index bde087171c..ebd7721aa6 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index 93b88b9dc9..b99b7dca32 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index d25c2ae4cd..c3820ac902 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index c91f8bf02c..c59cfe6ad9 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index db85844433..8e7d871987 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index acff3e6fe6..fb7a967028 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index b502e24ad5..ddb0371bf4 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index 1b31a7bc79..a87c93404e 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index d5c73a286a..31b72fc622 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/meetulr/talawa-admin/blob/f0d07a2/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) From bddc63d476642c95a6ba81ab0ea9fea1f96be628 Mon Sep 17 00:00:00 2001 From: meetulr Date: Sun, 11 Feb 2024 11:41:05 +0000 Subject: [PATCH 12/14] Update documentation --- ..._support_services_Plugin_helper.default.md | 6 +-- ...ts_EventCalendar_EventCalendar.ViewType.md | 4 +- ..._CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +-- ...In_types.InterfaceAttendeeQueryResponse.md | 2 +- ...onents_CheckIn_types.InterfaceModalProp.md | 6 +-- ...nts_CheckIn_types.InterfaceTableCheckIn.md | 10 ++--- ...onents_CheckIn_types.InterfaceTableData.md | 6 +-- .../components_CheckIn_types.InterfaceUser.md | 6 +-- ...leDropdown.InterfaceCollapsibleDropdown.md | 4 +- ...nt_IconComponent.InterfaceIconComponent.md | 8 ++-- ...eftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +-- ...eftDrawerEventWrapper.InterfacePropType.md | 4 +- ..._LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 ++--- ...wer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +-- ...d_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...eFieldSettings.InterfaceCustomFieldData.md | 4 +- ...ionDashCards_CardItem.InterfaceCardItem.md | 14 +++---- ...Screen.InterfaceOrganizationScreenProps.md | 6 +-- ...inScreen.InterfaceSuperAdminScreenProps.md | 6 +-- ...Loader_TableLoader.InterfaceTableLoader.md | 6 +-- talawa-admin-docs/modules.md | 3 ++ .../modules/components_AddOn_AddOn.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...s_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ..._AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- ...onents_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ..._AddOn_support_components_Action_Action.md | 2 +- ...port_components_MainContent_MainContent.md | 2 +- ..._support_components_SidePanel_SidePanel.md | 2 +- ...omponents_Advertisements_Advertisements.md | 2 +- ...e_AdvertisementEntry_AdvertisementEntry.md | 2 +- ...rtisementRegister_AdvertisementRegister.md | 2 +- ...LanguageDropdown_ChangeLanguageDropDown.md | 4 +- .../components_CheckIn_CheckInModal.md | 2 +- .../components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +-- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../components_ContriStats_ContriStats.md | 2 +- ...rrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...omFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ...tRegistrantsModal_EventRegistrantsModal.md | 2 +- ...egistrantsModal_EventRegistrantsWrapper.md | 2 +- .../components_EventStats_EventStats.md | 2 +- ...components_EventStats_EventStatsWrapper.md | 2 +- ...nts_EventStats_Statistics_AverageRating.md | 2 +- ...mponents_EventStats_Statistics_Feedback.md | 2 +- ...components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- ...ponents_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ..._LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...nts_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...nts_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...nItemCategories_OrgActionItemCategories.md | 23 +++++++++++ ...Categories_OrgActionItemCategories_test.md | 3 ++ ...emCategories_OrgActionItemCategoryMocks.md | 41 +++++++++++++++++++ ...nents_OrgAdminListCard_OrgAdminListCard.md | 2 +- ...omponents_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../components_OrgListCard_OrgListCard.md | 2 +- ...nts_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../components_OrgPostCard_OrgPostCard.md | 2 +- ...leFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../components_OrgUpdate_OrgUpdateMocks.md | 10 ++--- ...nizationCardStart_OrganizationCardStart.md | 2 +- ...nents_OrganizationCard_OrganizationCard.md | 2 +- ...mponents_OrganizationDashCards_CardItem.md | 2 +- ...s_OrganizationDashCards_CardItemLoading.md | 2 +- ...nts_OrganizationDashCards_DashboardCard.md | 2 +- ...anizationDashCards_DashboardCardLoading.md | 2 +- ...s_OrganizationScreen_OrganizationScreen.md | 2 +- ...omponents_PaginationList_PaginationList.md | 2 +- .../components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...nents_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...s_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- ...components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...ents_UserPortal_CommentCard_CommentCard.md | 2 +- ...ents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ts_UserPortal_DonationCard_DonationCard.md | 2 +- ...mponents_UserPortal_EventCard_EventCard.md | 2 +- .../components_UserPortal_Login_Login.md | 2 +- ...ortal_OrganizationCard_OrganizationCard.md | 2 +- ...l_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...OrganizationSidebar_OrganizationSidebar.md | 2 +- ...onents_UserPortal_PeopleCard_PeopleCard.md | 2 +- ...components_UserPortal_PostCard_PostCard.md | 2 +- ...ts_UserPortal_PromotedPost_PromotedPost.md | 2 +- ...components_UserPortal_Register_Register.md | 2 +- ...SecuredRouteForUser_SecuredRouteForUser.md | 2 +- ...onents_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...ents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../components_UserUpdate_UserUpdate.md | 2 +- ...nents_UsersTableItem_UserTableItemMocks.md | 4 +- ...omponents_UsersTableItem_UsersTableItem.md | 2 +- ...nents_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- ...ponents_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- ...ens_EventDashboard_EventDashboard_mocks.md | 4 +- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../screens_MemberDetail_MemberDetail.md | 6 +-- ...screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 10 ++--- .../screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../screens_OrgSettings_OrgSettings.md | 2 +- ...nizationDashboard_OrganizationDashboard.md | 2 +- ...ionDashboard_OrganizationDashboardMocks.md | 6 +-- ...s_OrganizationEvents_OrganizationEvents.md | 2 +- ...s_OrganizationPeople_OrganizationPeople.md | 2 +- .../screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../screens_UserPortal_Donate_Donate.md | 2 +- .../screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ..._UserPortal_Organizations_Organizations.md | 2 +- .../screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ..._UserPortal_UserLoginPage_UserLoginPage.md | 2 +- .../modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +-- 135 files changed, 261 insertions(+), 191 deletions(-) create mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md create mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md create mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index 31189c706c..81616da351 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index 29922c23d5..5a16cb390c 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index eb47c5bd4e..15ba8c79f4 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index 9ecfe473e1..9cf178f834 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index 2fa711670a..bffb02ca49 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index e87af3ecc3..5c7990c469 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index 390a79948f..7295da95d3 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index 877cb3ff5a..7e5b03bfb5 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index a94bf4c9bf..52f34bd1c8 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index a8669a5913..5d66bb2d3f 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index 2323d9e1b9..f834082197 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index 231bd29f60..fc4059dc74 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index 4ba897ae0f..70078af57c 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index d1fc895d2d..41dd57516b 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index 9d46c92019..bddd956502 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index 7ccadce5c2..e68adfd974 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index 5efc787028..6caee36d93 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 1b6a706c65..4c61cbcfe6 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index f6f3b33975..9681bbcf3b 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index e545773409..b38ea88319 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules.md b/talawa-admin-docs/modules.md index 8abc529b22..277f14bea9 100644 --- a/talawa-admin-docs/modules.md +++ b/talawa-admin-docs/modules.md @@ -86,6 +86,9 @@ - [components/MemberRequestCard/MemberRequestCard.test](modules/components_MemberRequestCard_MemberRequestCard_test.md) - [components/NotFound/NotFound](modules/components_NotFound_NotFound.md) - [components/NotFound/NotFound.test](modules/components_NotFound_NotFound_test.md) +- [components/OrgActionItemCategories/OrgActionItemCategories](modules/components_OrgActionItemCategories_OrgActionItemCategories.md) +- [components/OrgActionItemCategories/OrgActionItemCategories.test](modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md) +- [components/OrgActionItemCategories/OrgActionItemCategoryMocks](modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md) - [components/OrgAdminListCard/OrgAdminListCard](modules/components_OrgAdminListCard_OrgAdminListCard.md) - [components/OrgAdminListCard/OrgAdminListCard.test](modules/components_OrgAdminListCard_OrgAdminListCard_test.md) - [components/OrgContriCards/OrgContriCards](modules/components_OrgContriCards_OrgContriCards.md) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index 7708f3efc0..8f56fd435e 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index d5d4096e0d..2854851ecd 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index 2a0b34d8cf..f6f18a8525 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index d6f1d0ac38..5ffda5d69f 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index 09c5ab3380..840428e1f5 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index f93d3d6b94..7ef7231cfc 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index af9faef144..f0e3e3fea2 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index c9411bcff6..bea34d7248 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index 17e75d0708..293ad5a842 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index 22f50c02b7..c707d03b3c 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index 5a91b6e729..4f60ce00cf 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index 44f300753c..68675a5972 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index ccee8edbae..60ec302f22 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index 9bee87f600..aec3db8b48 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index aceaaf32f1..c6c129d134 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index 209120d33e..bfcbae88b7 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index 97a50ec9f6..aac900223c 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index 0811628058..652163fd94 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index 07484f6961..4acfb15396 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 6996074140..3312a28de4 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index 2b688e769e..e6634fd95a 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index 740b3130a9..6101bf4f78 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index be0467b5cb..840ee67e6b 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index d2df808a4e..6157a43186 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index a8458ded95..cb62fd8c40 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index 32d3c032d5..5272011a51 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index 2278652afb..7d48e31ce5 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index d8f65115de..877833281f 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index 2970784a82..c1398250cc 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index d6c62473e2..f996cecd5f 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index 2260ddfa76..ce89f0912d 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index bc862524a0..5908072dc4 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index 2305d3dbad..b6ac5fee19 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index e2b5d4d9a6..0ed80f2ba1 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index 6d0b7b40de..4ac2317448 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index ae7da72814..ddcdb499bc 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index dd36c8b540..f8a17d339c 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index e7d0d13510..62536b5281 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index 62629fd66c..ec2ad9a9fb 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index 3c27d00110..64f5c00192 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md new file mode 100644 index 0000000000..30c055e329 --- /dev/null +++ b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md @@ -0,0 +1,23 @@ +[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories + +# Module: components/OrgActionItemCategories/OrgActionItemCategories + +## Table of contents + +### Functions + +- [default](components_OrgActionItemCategories_OrgActionItemCategories.md#default) + +## Functions + +### default + +▸ **default**(): `any` + +#### Returns + +`any` + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategories.tsx:20](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx#L20) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md new file mode 100644 index 0000000000..dc005c10a5 --- /dev/null +++ b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md @@ -0,0 +1,3 @@ +[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories.test + +# Module: components/OrgActionItemCategories/OrgActionItemCategories.test diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md new file mode 100644 index 0000000000..5dfd43880e --- /dev/null +++ b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md @@ -0,0 +1,41 @@ +[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategoryMocks + +# Module: components/OrgActionItemCategories/OrgActionItemCategoryMocks + +## Table of contents + +### Variables + +- [MOCKS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks) +- [MOCKS\_ERROR\_MUTATIONS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_mutations) +- [MOCKS\_ERROR\_QUERY](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_query) + +## Variables + +### MOCKS + +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory`: \{ `_id`: `string` = '4' \} ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \})[] + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L8) + +___ + +### MOCKS\_ERROR\_MUTATIONS + +• `Const` **MOCKS\_ERROR\_MUTATIONS**: (\{ `error?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] \} \} \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \})[] + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L109) + +___ + +### MOCKS\_ERROR\_QUERY + +• `Const` **MOCKS\_ERROR\_QUERY**: \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `organizationId`: `string` = '123' \} \} \}[] + +#### Defined in + +[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:99](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L99) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index a502f77abd..53e43024b3 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index 7793777b0d..71dff76cb9 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index 128d528006..0919f5fdc8 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index 18bfd4460b..7dd5fb067c 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index 3bfe921cb6..841aeb33bc 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index abd4ea5663..ee87a7eeb3 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index 24633b513a..e1a53ac9a7 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index f3671db7f1..acc32f86bb 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index 356df928c1..8d6be69700 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -14,11 +14,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,14 +28,14 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ ### MOCKS\_ERROR\_UPDATE\_ORGLIST -• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] +• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index 1f3d0f7f15..3373dfba77 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index e72bc4b169..0ac1092231 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index 149ddf73b5..9c224ae607 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index c837ff6ae3..692656d1a2 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 4874366105..70a44543bd 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index 48551c741d..91b0703d9b 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index 8abc38e92f..c6dad41ad4 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index 2b35c78487..21e0bcecc6 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index d4d4be6cd8..e37f21bc41 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index 1f48f3cb87..62534ad19d 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index 11c00f6131..84a03d943b 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index 9874a5c25e..557acf05a2 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index f8f040f88e..7e0eb866b8 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 517a6d692f..7a1c6ca0e8 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index 84480b9f02..7b307c2724 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index 9d36774a58..ccae691ac6 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index f40934d0f8..a5aafe0eea 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index c40b5fd806..21c015a9fc 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index 564eb9afa7..217ddfbb5c 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index 4b80b3969f..1e6cf20eb7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index c7b1e8643e..ffc3793734 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index 492e7a44c7..77b275a94b 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index 6902fe678a..f4c16a9089 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index a3497d6bca..c01751e2ea 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index 533ef95663..083d27bbff 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index 8ce7350f58..5b8afb5d03 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index 7865759c03..899bed4678 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index b834c74894..06d855e650 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index 265a3d12ef..0729b10f3c 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index d31979578d..0f502c5afa 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index 6e9f01258e..0054d635e7 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index 85305b69e0..3f3cadc25c 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -12,8 +12,8 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = 'abc'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = 'abc'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = '123'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = '123'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index c1e49109f4..51d199f060 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index f35bdef35a..a34cf4ad15 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index dfc53edd9f..a837cd2ff7 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index 631fb56671..2ea2eef318 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index 33bbf8f7ec..125e326827 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index 55d32ca1f5..ed66dd69ae 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index b326d5e77f..ec4c82cebe 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 75b2f9d03a..9ac9392d4e 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index 3775c53c7c..365c329932 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index c9f5d05463..d168d24636 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index 04775362ee..e87d7acccd 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index 95d493570c..d12d503bf7 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -15,11 +15,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 70df93939d..394719cb18 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index a21030a9eb..a0a7e60edf 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index 7ea5d95389..3153480ff4 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) +[src/screens/OrgSettings/OrgSettings.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgSettings/OrgSettings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index 7fb0774b3c..c43cbabc28 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index 58a98c70e1..ddbb238722 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index 5ea99e50ac..2cd4432df5 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index 6169d2109b..bfaee22a43 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index 580ae063d3..6fedf0c236 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index 314d6c9dfd..a17883d8fe 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index ebd7721aa6..9c86fb8231 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index b99b7dca32..7908b915fc 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index c3820ac902..c79c603f80 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index c59cfe6ad9..5344f8edce 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 8e7d871987..97080dbed9 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index fb7a967028..43ba2bf0d1 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index ddb0371bf4..81d3a45e8b 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index a87c93404e..4de582929f 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index 31b72fc622..0b1e31ece2 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/Users/UsersMocks.ts#L233) From 1d160e24c7f409e1c1cfb2eca78f71867c7d4c8d Mon Sep 17 00:00:00 2001 From: meetul Date: Sun, 11 Feb 2024 17:35:56 +0530 Subject: [PATCH 13/14] Revert "Update documentation" This reverts commit bddc63d476642c95a6ba81ab0ea9fea1f96be628. --- ..._support_services_Plugin_helper.default.md | 6 +-- ...ts_EventCalendar_EventCalendar.ViewType.md | 4 +- ..._CheckIn_types.InterfaceAttendeeCheckIn.md | 6 +-- ...In_types.InterfaceAttendeeQueryResponse.md | 2 +- ...onents_CheckIn_types.InterfaceModalProp.md | 6 +-- ...nts_CheckIn_types.InterfaceTableCheckIn.md | 10 ++--- ...onents_CheckIn_types.InterfaceTableData.md | 6 +-- .../components_CheckIn_types.InterfaceUser.md | 6 +-- ...leDropdown.InterfaceCollapsibleDropdown.md | 4 +- ...nt_IconComponent.InterfaceIconComponent.md | 8 ++-- ...eftDrawerEvent.InterfaceLeftDrawerProps.md | 6 +-- ...eftDrawerEventWrapper.InterfacePropType.md | 4 +- ..._LeftDrawerOrg.InterfaceLeftDrawerProps.md | 10 ++--- ...wer_LeftDrawer.InterfaceLeftDrawerProps.md | 6 +-- ...d_OrgListCard.InterfaceOrgListCardProps.md | 2 +- ...eFieldSettings.InterfaceCustomFieldData.md | 4 +- ...ionDashCards_CardItem.InterfaceCardItem.md | 14 +++---- ...Screen.InterfaceOrganizationScreenProps.md | 6 +-- ...inScreen.InterfaceSuperAdminScreenProps.md | 6 +-- ...Loader_TableLoader.InterfaceTableLoader.md | 6 +-- talawa-admin-docs/modules.md | 3 -- .../modules/components_AddOn_AddOn.md | 2 +- ...onents_AddOn_core_AddOnEntry_AddOnEntry.md | 2 +- ...s_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 2 +- ..._AddOn_core_AddOnRegister_AddOnRegister.md | 2 +- ...onents_AddOn_core_AddOnStore_AddOnStore.md | 2 +- ..._AddOn_support_components_Action_Action.md | 2 +- ...port_components_MainContent_MainContent.md | 2 +- ..._support_components_SidePanel_SidePanel.md | 2 +- ...omponents_Advertisements_Advertisements.md | 2 +- ...e_AdvertisementEntry_AdvertisementEntry.md | 2 +- ...rtisementRegister_AdvertisementRegister.md | 2 +- ...LanguageDropdown_ChangeLanguageDropDown.md | 4 +- .../components_CheckIn_CheckInModal.md | 2 +- .../components_CheckIn_CheckInWrapper.md | 2 +- .../modules/components_CheckIn_TableRow.md | 2 +- .../modules/components_CheckIn_mocks.md | 6 +-- .../modules/components_CheckIn_tagTemplate.md | 2 +- ...CollapsibleDropdown_CollapsibleDropdown.md | 2 +- .../components_ContriStats_ContriStats.md | 2 +- ...rrentHourIndicator_CurrentHourIndicator.md | 2 +- .../modules/components_DeleteOrg_DeleteOrg.md | 2 +- ...omFieldDropDown_EditCustomFieldDropDown.md | 2 +- .../components_EventCalendar_EventCalendar.md | 2 +- .../components_EventListCard_EventListCard.md | 2 +- ...tRegistrantsModal_EventRegistrantsModal.md | 2 +- ...egistrantsModal_EventRegistrantsWrapper.md | 2 +- .../components_EventStats_EventStats.md | 2 +- ...components_EventStats_EventStatsWrapper.md | 2 +- ...nts_EventStats_Statistics_AverageRating.md | 2 +- ...mponents_EventStats_Statistics_Feedback.md | 2 +- ...components_EventStats_Statistics_Review.md | 2 +- .../components_IconComponent_IconComponent.md | 2 +- ...ponents_LeftDrawerEvent_LeftDrawerEvent.md | 2 +- ..._LeftDrawerEvent_LeftDrawerEventWrapper.md | 2 +- .../components_LeftDrawerOrg_LeftDrawerOrg.md | 2 +- .../components_LeftDrawer_LeftDrawer.md | 2 +- .../modules/components_Loader_Loader.md | 2 +- ...nts_LoginPortalToggle_LoginPortalToggle.md | 2 +- ...nts_MemberRequestCard_MemberRequestCard.md | 2 +- .../modules/components_NotFound_NotFound.md | 2 +- ...nItemCategories_OrgActionItemCategories.md | 23 ----------- ...Categories_OrgActionItemCategories_test.md | 3 -- ...emCategories_OrgActionItemCategoryMocks.md | 41 ------------------- ...nents_OrgAdminListCard_OrgAdminListCard.md | 2 +- ...omponents_OrgContriCards_OrgContriCards.md | 2 +- .../modules/components_OrgDelete_OrgDelete.md | 2 +- .../components_OrgListCard_OrgListCard.md | 2 +- ...nts_OrgPeopleListCard_OrgPeopleListCard.md | 2 +- .../components_OrgPostCard_OrgPostCard.md | 2 +- ...leFieldSettings_OrgProfileFieldSettings.md | 2 +- .../modules/components_OrgUpdate_OrgUpdate.md | 2 +- .../components_OrgUpdate_OrgUpdateMocks.md | 10 ++--- ...nizationCardStart_OrganizationCardStart.md | 2 +- ...nents_OrganizationCard_OrganizationCard.md | 2 +- ...mponents_OrganizationDashCards_CardItem.md | 2 +- ...s_OrganizationDashCards_CardItemLoading.md | 2 +- ...nts_OrganizationDashCards_DashboardCard.md | 2 +- ...anizationDashCards_DashboardCardLoading.md | 2 +- ...s_OrganizationScreen_OrganizationScreen.md | 2 +- ...omponents_PaginationList_PaginationList.md | 2 +- .../components_Pagination_Pagination.md | 2 +- .../components_SecuredRoute_SecuredRoute.md | 2 +- ...nents_SuperAdminScreen_SuperAdminScreen.md | 2 +- .../components_TableLoader_TableLoader.md | 2 +- .../components_UserListCard_UserListCard.md | 2 +- ...s_UserPasswordUpdate_UserPasswordUpdate.md | 2 +- ...components_UserPortal_ChatRoom_ChatRoom.md | 2 +- ...ents_UserPortal_CommentCard_CommentCard.md | 2 +- ...ents_UserPortal_ContactCard_ContactCard.md | 2 +- ...ts_UserPortal_DonationCard_DonationCard.md | 2 +- ...mponents_UserPortal_EventCard_EventCard.md | 2 +- .../components_UserPortal_Login_Login.md | 2 +- ...ortal_OrganizationCard_OrganizationCard.md | 2 +- ...l_OrganizationNavbar_OrganizationNavbar.md | 2 +- ...OrganizationSidebar_OrganizationSidebar.md | 2 +- ...onents_UserPortal_PeopleCard_PeopleCard.md | 2 +- ...components_UserPortal_PostCard_PostCard.md | 2 +- ...ts_UserPortal_PromotedPost_PromotedPost.md | 2 +- ...components_UserPortal_Register_Register.md | 2 +- ...SecuredRouteForUser_SecuredRouteForUser.md | 2 +- ...onents_UserPortal_UserNavbar_UserNavbar.md | 2 +- ...ents_UserPortal_UserSidebar_UserSidebar.md | 2 +- .../components_UserUpdate_UserUpdate.md | 2 +- ...nents_UsersTableItem_UserTableItemMocks.md | 4 +- ...omponents_UsersTableItem_UsersTableItem.md | 2 +- ...nents_plugins_DummyPlugin2_DummyPlugin2.md | 2 +- ...ponents_plugins_DummyPlugin_DummyPlugin.md | 2 +- .../modules/screens_BlockUser_BlockUser.md | 2 +- .../screens_EventDashboard_EventDashboard.md | 2 +- ...ens_EventDashboard_EventDashboard_mocks.md | 4 +- .../screens_ForgotPassword_ForgotPassword.md | 2 +- .../modules/screens_LoginPage_LoginPage.md | 2 +- .../screens_MemberDetail_MemberDetail.md | 6 +-- ...screens_OrgContribution_OrgContribution.md | 2 +- .../modules/screens_OrgList_OrgList.md | 2 +- .../modules/screens_OrgList_OrgListMocks.md | 10 ++--- .../screens_OrgList_OrganizationModal.md | 2 +- .../modules/screens_OrgPost_OrgPost.md | 2 +- .../screens_OrgSettings_OrgSettings.md | 2 +- ...nizationDashboard_OrganizationDashboard.md | 2 +- ...ionDashboard_OrganizationDashboardMocks.md | 6 +-- ...s_OrganizationEvents_OrganizationEvents.md | 2 +- ...s_OrganizationPeople_OrganizationPeople.md | 2 +- .../screens_PageNotFound_PageNotFound.md | 2 +- .../modules/screens_UserPortal_Chat_Chat.md | 2 +- .../screens_UserPortal_Donate_Donate.md | 2 +- .../screens_UserPortal_Events_Events.md | 2 +- .../modules/screens_UserPortal_Home_Home.md | 2 +- ..._UserPortal_Organizations_Organizations.md | 2 +- .../screens_UserPortal_People_People.md | 2 +- .../screens_UserPortal_Settings_Settings.md | 2 +- ..._UserPortal_UserLoginPage_UserLoginPage.md | 2 +- .../modules/screens_Users_Users.md | 2 +- .../modules/screens_Users_UsersMocks.md | 6 +-- 135 files changed, 191 insertions(+), 261 deletions(-) delete mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md delete mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md diff --git a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md index 81616da351..31189c706c 100644 --- a/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md +++ b/talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md @@ -38,7 +38,7 @@ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/services/Plugin.helper.ts#L7) +[src/components/AddOn/support/services/Plugin.helper.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L7) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/services/Plugin.helper.ts#L2) +[src/components/AddOn/support/services/Plugin.helper.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L2) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/services/Plugin.helper.ts#L12) +[src/components/AddOn/support/services/Plugin.helper.ts:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/services/Plugin.helper.ts#L12) diff --git a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md index 5a16cb390c..29922c23d5 100644 --- a/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md +++ b/talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventCalendar/EventCalendar.tsx#L46) +[src/components/EventCalendar/EventCalendar.tsx:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L46) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventCalendar/EventCalendar.tsx#L47) +[src/components/EventCalendar/EventCalendar.tsx:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L47) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md index 15ba8c79f4..eb47c5bd4e 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L8) +[src/components/CheckIn/types.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L8) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L10) +[src/components/CheckIn/types.ts:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L10) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:9](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L9) +[src/components/CheckIn/types.ts:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L9) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md index 9cf178f834..9ecfe473e1 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md @@ -25,4 +25,4 @@ #### Defined in -[src/components/CheckIn/types.ts:19](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L19) +[src/components/CheckIn/types.ts:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L19) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md index bffb02ca49..2fa711670a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:27](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L27) +[src/components/CheckIn/types.ts:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L27) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:28](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L28) +[src/components/CheckIn/types.ts:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L28) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L26) +[src/components/CheckIn/types.ts:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L26) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md index 5c7990c469..e87af3ecc3 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/CheckIn/types.ts:35](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L35) +[src/components/CheckIn/types.ts:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L35) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:41](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L41) +[src/components/CheckIn/types.ts:41](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L41) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:32](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L32) +[src/components/CheckIn/types.ts:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L32) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:33](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L33) +[src/components/CheckIn/types.ts:33](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L33) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:34](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L34) +[src/components/CheckIn/types.ts:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L34) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md index 7295da95d3..390a79948f 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:47](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L47) +[src/components/CheckIn/types.ts:47](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L47) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:46](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L46) +[src/components/CheckIn/types.ts:46](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L46) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:45](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L45) +[src/components/CheckIn/types.ts:45](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L45) diff --git a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md index 7e5b03bfb5..877cb3ff5a 100644 --- a/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md +++ b/talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/CheckIn/types.ts:2](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L2) +[src/components/CheckIn/types.ts:2](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L2) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:3](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L3) +[src/components/CheckIn/types.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L3) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/CheckIn/types.ts:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/types.ts#L4) +[src/components/CheckIn/types.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/types.ts#L4) diff --git a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md index 52f34bd1c8..a94bf4c9bf 100644 --- a/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md +++ b/talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md index 5d66bb2d3f..a8669a5913 100644 --- a/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md +++ b/talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md @@ -21,7 +21,7 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/IconComponent/IconComponent.tsx#L17) +[src/components/IconComponent/IconComponent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L17) ___ @@ -31,7 +31,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/IconComponent/IconComponent.tsx#L18) +[src/components/IconComponent/IconComponent.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L18) ___ @@ -41,7 +41,7 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/IconComponent/IconComponent.tsx#L16) +[src/components/IconComponent/IconComponent.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L16) ___ @@ -51,4 +51,4 @@ ___ #### Defined in -[src/components/IconComponent/IconComponent.tsx:19](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/IconComponent/IconComponent.tsx#L19) +[src/components/IconComponent/IconComponent.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L19) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md index f834082197..2323d9e1b9 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md @@ -30,7 +30,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L17) ___ @@ -40,7 +40,7 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L25) ___ @@ -50,4 +50,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L26) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md index fc4059dc74..231bd29f60 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L15) ___ @@ -39,4 +39,4 @@ ___ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md index 70078af57c..4ba897ae0f 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md @@ -22,7 +22,7 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:23](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L24) ___ @@ -62,4 +62,4 @@ ___ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) diff --git a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md index 41dd57516b..d1fc895d2d 100644 --- a/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md +++ b/talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawer/LeftDrawer.tsx#L16) +[src/components/LeftDrawer/LeftDrawer.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L16) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawer/LeftDrawer.tsx#L18) +[src/components/LeftDrawer/LeftDrawer.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L18) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawer/LeftDrawer.tsx#L17) +[src/components/LeftDrawer/LeftDrawer.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md index bddd956502..9d46c92019 100644 --- a/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md +++ b/talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md @@ -18,4 +18,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgListCard/OrgListCard.tsx#L14) +[src/components/OrgListCard/OrgListCard.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L14) diff --git a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md index e68adfd974..7ccadce5c2 100644 --- a/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md +++ b/talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md @@ -19,7 +19,7 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L18) ___ @@ -29,4 +29,4 @@ ___ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L17) diff --git a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md index 6caee36d93..5efc787028 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md +++ b/talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md @@ -24,7 +24,7 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L17) +[src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L17) ___ @@ -34,7 +34,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L16) +[src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L16) ___ @@ -44,7 +44,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L18) +[src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L18) ___ @@ -54,7 +54,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L15) +[src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L15) ___ @@ -64,7 +64,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L14) +[src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L14) ___ @@ -74,7 +74,7 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L13) +[src/components/OrganizationDashCards/CardItem.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L13) ___ @@ -84,4 +84,4 @@ ___ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L12) +[src/components/OrganizationDashCards/CardItem.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L12) diff --git a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md index 4c61cbcfe6..1b6a706c65 100644 --- a/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md +++ b/talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) +[src/components/OrganizationScreen/OrganizationScreen.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L12) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) +[src/components/OrganizationScreen/OrganizationScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L11) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) +[src/components/OrganizationScreen/OrganizationScreen.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L10) diff --git a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md index 9681bbcf3b..f6f3b33975 100644 --- a/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md +++ b/talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:9](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L9) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L7) diff --git a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md index b38ea88319..e545773409 100644 --- a/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md +++ b/talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md @@ -20,7 +20,7 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/TableLoader/TableLoader.tsx#L7) +[src/components/TableLoader/TableLoader.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L7) ___ @@ -30,7 +30,7 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/TableLoader/TableLoader.tsx#L8) +[src/components/TableLoader/TableLoader.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L8) ___ @@ -40,4 +40,4 @@ ___ #### Defined in -[src/components/TableLoader/TableLoader.tsx:6](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/TableLoader/TableLoader.tsx#L6) +[src/components/TableLoader/TableLoader.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/talawa-admin-docs/modules.md b/talawa-admin-docs/modules.md index 277f14bea9..8abc529b22 100644 --- a/talawa-admin-docs/modules.md +++ b/talawa-admin-docs/modules.md @@ -86,9 +86,6 @@ - [components/MemberRequestCard/MemberRequestCard.test](modules/components_MemberRequestCard_MemberRequestCard_test.md) - [components/NotFound/NotFound](modules/components_NotFound_NotFound.md) - [components/NotFound/NotFound.test](modules/components_NotFound_NotFound_test.md) -- [components/OrgActionItemCategories/OrgActionItemCategories](modules/components_OrgActionItemCategories_OrgActionItemCategories.md) -- [components/OrgActionItemCategories/OrgActionItemCategories.test](modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md) -- [components/OrgActionItemCategories/OrgActionItemCategoryMocks](modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md) - [components/OrgAdminListCard/OrgAdminListCard](modules/components_OrgAdminListCard_OrgAdminListCard.md) - [components/OrgAdminListCard/OrgAdminListCard.test](modules/components_OrgAdminListCard_OrgAdminListCard_test.md) - [components/OrgContriCards/OrgContriCards](modules/components_OrgContriCards_OrgContriCards.md) diff --git a/talawa-admin-docs/modules/components_AddOn_AddOn.md b/talawa-admin-docs/modules/components_AddOn_AddOn.md index 8f56fd435e..7708f3efc0 100644 --- a/talawa-admin-docs/modules/components_AddOn_AddOn.md +++ b/talawa-admin-docs/modules/components_AddOn_AddOn.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/AddOn.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/AddOn.tsx#L11) +[src/components/AddOn/AddOn.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/AddOn.tsx#L11) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md index 2854851ecd..d5d4096e0d 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) +[src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L22) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md index f6f18a8525..2a0b34d8cf 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) +[src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md index 5ffda5d69f..d6f1d0ac38 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) +[src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L24) diff --git a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md index 840428e1f5..09c5ab3380 100644 --- a/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md +++ b/talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) +[src/components/AddOn/core/AddOnStore/AddOnStore.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L26) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md index 7ef7231cfc..f93d3d6b94 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/components/Action/Action.tsx#L10) +[src/components/AddOn/support/components/Action/Action.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/Action/Action.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md index f0e3e3fea2..af9faef144 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) +[src/components/AddOn/support/components/MainContent/MainContent.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/MainContent/MainContent.tsx#L10) diff --git a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md index bea34d7248..c9411bcff6 100644 --- a/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md +++ b/talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) +[src/components/AddOn/support/components/SidePanel/SidePanel.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L10) diff --git a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md index 293ad5a842..17e75d0708 100644 --- a/talawa-admin-docs/modules/components_Advertisements_Advertisements.md +++ b/talawa-admin-docs/modules/components_Advertisements_Advertisements.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/Advertisements/Advertisements.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/Advertisements/Advertisements.tsx#L18) +[src/components/Advertisements/Advertisements.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/Advertisements.tsx#L18) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md index c707d03b3c..22f50c02b7 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) +[src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md index 4f60ce00cf..5a91b6e729 100644 --- a/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md +++ b/talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) +[src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L36) diff --git a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md index 68675a5972..44f300753c 100644 --- a/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md +++ b/talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md @@ -27,7 +27,7 @@ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L13) ___ @@ -47,4 +47,4 @@ ___ #### Defined in -[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) +[src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L17) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md index 60ec302f22..ccee8edbae 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/CheckInModal.tsx#L16) +[src/components/CheckIn/CheckInModal.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInModal.tsx#L16) diff --git a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md index aec3db8b48..9bee87f600 100644 --- a/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md +++ b/talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/CheckInWrapper.tsx#L11) +[src/components/CheckIn/CheckInWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/CheckInWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_CheckIn_TableRow.md b/talawa-admin-docs/modules/components_CheckIn_TableRow.md index c6c129d134..aceaaf32f1 100644 --- a/talawa-admin-docs/modules/components_CheckIn_TableRow.md +++ b/talawa-admin-docs/modules/components_CheckIn_TableRow.md @@ -28,4 +28,4 @@ #### Defined in -[src/components/CheckIn/TableRow.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/TableRow.tsx#L10) +[src/components/CheckIn/TableRow.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/TableRow.tsx#L10) diff --git a/talawa-admin-docs/modules/components_CheckIn_mocks.md b/talawa-admin-docs/modules/components_CheckIn_mocks.md index bfcbae88b7..209120d33e 100644 --- a/talawa-admin-docs/modules/components_CheckIn_mocks.md +++ b/talawa-admin-docs/modules/components_CheckIn_mocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/components/CheckIn/mocks.ts:48](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/mocks.ts#L48) +[src/components/CheckIn/mocks.ts:48](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L48) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/mocks.ts#L69) +[src/components/CheckIn/mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L69) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/components/CheckIn/mocks.ts:36](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/mocks.ts#L36) +[src/components/CheckIn/mocks.ts:36](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/mocks.ts#L36) diff --git a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md index aac900223c..97a50ec9f6 100644 --- a/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md +++ b/talawa-admin-docs/modules/components_CheckIn_tagTemplate.md @@ -16,4 +16,4 @@ #### Defined in -[src/components/CheckIn/tagTemplate.ts:3](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CheckIn/tagTemplate.ts#L3) +[src/components/CheckIn/tagTemplate.ts:3](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CheckIn/tagTemplate.ts#L3) diff --git a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md index 652163fd94..0811628058 100644 --- a/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md +++ b/talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) +[src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L13) diff --git a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md index 4acfb15396..07484f6961 100644 --- a/talawa-admin-docs/modules/components_ContriStats_ContriStats.md +++ b/talawa-admin-docs/modules/components_ContriStats_ContriStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/ContriStats/ContriStats.tsx:14](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/ContriStats/ContriStats.tsx#L14) +[src/components/ContriStats/ContriStats.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/ContriStats/ContriStats.tsx#L14) diff --git a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md index 3312a28de4..6996074140 100644 --- a/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md +++ b/talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) +[src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L4) diff --git a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md index e6634fd95a..2b688e769e 100644 --- a/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md +++ b/talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/DeleteOrg/DeleteOrg.tsx#L15) +[src/components/DeleteOrg/DeleteOrg.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/DeleteOrg/DeleteOrg.tsx#L15) diff --git a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md index 6101bf4f78..740b3130a9 100644 --- a/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md +++ b/talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) +[src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L16) diff --git a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md index 840ee67e6b..be0467b5cb 100644 --- a/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md +++ b/talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md @@ -31,4 +31,4 @@ #### Defined in -[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventCalendar/EventCalendar.tsx#L59) +[src/components/EventCalendar/EventCalendar.tsx:59](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventCalendar/EventCalendar.tsx#L59) diff --git a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md index 6157a43186..d2df808a4e 100644 --- a/talawa-admin-docs/modules/components_EventListCard_EventListCard.md +++ b/talawa-admin-docs/modules/components_EventListCard_EventListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventListCard/EventListCard.tsx:32](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventListCard/EventListCard.tsx#L32) +[src/components/EventListCard/EventListCard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventListCard/EventListCard.tsx#L32) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md index cb62fd8c40..a8458ded95 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) +[src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L30) diff --git a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md index 5272011a51..32d3c032d5 100644 --- a/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md +++ b/talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) +[src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L12) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStats.md b/talawa-admin-docs/modules/components_EventStats_EventStats.md index 7d48e31ce5..2278652afb 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStats.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStats.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStats.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventStats/EventStats.tsx#L17) +[src/components/EventStats/EventStats.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStats.tsx#L17) diff --git a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md index 877833281f..d8f65115de 100644 --- a/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md +++ b/talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventStats/EventStatsWrapper.tsx#L11) +[src/components/EventStats/EventStatsWrapper.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/EventStatsWrapper.tsx#L11) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md index c1398250cc..2970784a82 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventStats/Statistics/AverageRating.tsx#L35) +[src/components/EventStats/Statistics/AverageRating.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/AverageRating.tsx#L35) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md index f996cecd5f..d6c62473e2 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventStats/Statistics/Feedback.tsx#L25) +[src/components/EventStats/Statistics/Feedback.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Feedback.tsx#L25) diff --git a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md index ce89f0912d..2260ddfa76 100644 --- a/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md +++ b/talawa-admin-docs/modules/components_EventStats_Statistics_Review.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/EventStats/Statistics/Review.tsx#L21) +[src/components/EventStats/Statistics/Review.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/EventStats/Statistics/Review.tsx#L21) diff --git a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md index 5908072dc4..bc862524a0 100644 --- a/talawa-admin-docs/modules/components_IconComponent_IconComponent.md +++ b/talawa-admin-docs/modules/components_IconComponent_IconComponent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/IconComponent/IconComponent.tsx:22](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/IconComponent/IconComponent.tsx#L22) +[src/components/IconComponent/IconComponent.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/IconComponent/IconComponent.tsx#L22) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md index b6ac5fee19..2305d3dbad 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) +[src/components/LeftDrawerEvent/LeftDrawerEvent.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEvent.tsx#L29) diff --git a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md index 0ed80f2ba1..e2b5d4d9a6 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md +++ b/talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) +[src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerEvent/LeftDrawerEventWrapper.tsx#L18) diff --git a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md index 4ac2317448..6d0b7b40de 100644 --- a/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md +++ b/talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) +[src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L27) diff --git a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md index ddcdb499bc..ae7da72814 100644 --- a/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md +++ b/talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LeftDrawer/LeftDrawer.tsx#L21) +[src/components/LeftDrawer/LeftDrawer.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LeftDrawer/LeftDrawer.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Loader_Loader.md b/talawa-admin-docs/modules/components_Loader_Loader.md index f8a17d339c..dd36c8b540 100644 --- a/talawa-admin-docs/modules/components_Loader_Loader.md +++ b/talawa-admin-docs/modules/components_Loader_Loader.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Loader/Loader.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/Loader/Loader.tsx#L10) +[src/components/Loader/Loader.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Loader/Loader.tsx#L10) diff --git a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md index 62536b5281..e7d0d13510 100644 --- a/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md +++ b/talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) +[src/components/LoginPortalToggle/LoginPortalToggle.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L8) diff --git a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md index ec2ad9a9fb..62629fd66c 100644 --- a/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md +++ b/talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) +[src/components/MemberRequestCard/MemberRequestCard.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/MemberRequestCard/MemberRequestCard.tsx#L26) diff --git a/talawa-admin-docs/modules/components_NotFound_NotFound.md b/talawa-admin-docs/modules/components_NotFound_NotFound.md index 64f5c00192..3c27d00110 100644 --- a/talawa-admin-docs/modules/components_NotFound_NotFound.md +++ b/talawa-admin-docs/modules/components_NotFound_NotFound.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/NotFound/NotFound.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/NotFound/NotFound.tsx#L11) +[src/components/NotFound/NotFound.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/NotFound/NotFound.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md deleted file mode 100644 index 30c055e329..0000000000 --- a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories.md +++ /dev/null @@ -1,23 +0,0 @@ -[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories - -# Module: components/OrgActionItemCategories/OrgActionItemCategories - -## Table of contents - -### Functions - -- [default](components_OrgActionItemCategories_OrgActionItemCategories.md#default) - -## Functions - -### default - -▸ **default**(): `any` - -#### Returns - -`any` - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategories.tsx:20](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgActionItemCategories/OrgActionItemCategories.tsx#L20) diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md deleted file mode 100644 index dc005c10a5..0000000000 --- a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategories_test.md +++ /dev/null @@ -1,3 +0,0 @@ -[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategories.test - -# Module: components/OrgActionItemCategories/OrgActionItemCategories.test diff --git a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md b/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md deleted file mode 100644 index 5dfd43880e..0000000000 --- a/talawa-admin-docs/modules/components_OrgActionItemCategories_OrgActionItemCategoryMocks.md +++ /dev/null @@ -1,41 +0,0 @@ -[talawa-admin](../README.md) / [Modules](../modules.md) / components/OrgActionItemCategories/OrgActionItemCategoryMocks - -# Module: components/OrgActionItemCategories/OrgActionItemCategoryMocks - -## Table of contents - -### Variables - -- [MOCKS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks) -- [MOCKS\_ERROR\_MUTATIONS](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_mutations) -- [MOCKS\_ERROR\_QUERY](components_OrgActionItemCategories_OrgActionItemCategoryMocks.md#mocks_error_query) - -## Variables - -### MOCKS - -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory`: \{ `_id`: `string` = '4' \} ; `updateActionItemCategory?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization?`: `undefined` ; `createActionItemCategory?`: `undefined` ; `updateActionItemCategory`: \{ `_id`: `string` = '1' \} \} \} \})[] - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L8) - -___ - -### MOCKS\_ERROR\_MUTATIONS - -• `Const` **MOCKS\_ERROR\_MUTATIONS**: (\{ `error?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: \{ `_id`: `string` = '1'; `isDisabled`: `boolean` = false; `name`: `string` = 'ActionItemCategory 1' \}[] \} \} \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId?`: `undefined` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 4'; `organizationId`: `string` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled?`: `undefined` = true; `name`: `string` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \} \| \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION; `variables`: \{ `actionItemCategoryId`: `string` = '1'; `isDisabled`: `boolean` = true; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `organizationId?`: `undefined` = '123' \} \} ; `result?`: `undefined` \})[] - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L109) - -___ - -### MOCKS\_ERROR\_QUERY - -• `Const` **MOCKS\_ERROR\_QUERY**: \{ `error`: `Error` ; `request`: \{ `query`: `DocumentNode` = ACTION\_ITEM\_CATEGORY\_LIST; `variables`: \{ `organizationId`: `string` = '123' \} \} \}[] - -#### Defined in - -[src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts:99](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgActionItemCategories/OrgActionItemCategoryMocks.ts#L99) diff --git a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md index 53e43024b3..a502f77abd 100644 --- a/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md +++ b/talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) +[src/components/OrgAdminListCard/OrgAdminListCard.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L29) diff --git a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md index 71dff76cb9..7793777b0d 100644 --- a/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md +++ b/talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgContriCards/OrgContriCards.tsx#L17) +[src/components/OrgContriCards/OrgContriCards.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgContriCards/OrgContriCards.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md index 0919f5fdc8..128d528006 100644 --- a/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md +++ b/talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgDelete/OrgDelete.tsx#L4) +[src/components/OrgDelete/OrgDelete.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgDelete/OrgDelete.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md index 7dd5fb067c..18bfd4460b 100644 --- a/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md +++ b/talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgListCard/OrgListCard.tsx#L17) +[src/components/OrgListCard/OrgListCard.tsx:17](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgListCard/OrgListCard.tsx#L17) diff --git a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md index 841aeb33bc..3bfe921cb6 100644 --- a/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md +++ b/talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) +[src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md index ee87a7eeb3..abd4ea5663 100644 --- a/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md +++ b/talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgPostCard/OrgPostCard.tsx#L35) +[src/components/OrgPostCard/OrgPostCard.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgPostCard/OrgPostCard.tsx#L35) diff --git a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md index e1a53ac9a7..24633b513a 100644 --- a/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md +++ b/talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md @@ -24,4 +24,4 @@ #### Defined in -[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) +[src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md index acc32f86bb..f3671db7f1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgUpdate/OrgUpdate.tsx#L26) +[src/components/OrgUpdate/OrgUpdate.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdate.tsx#L26) diff --git a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md index 8d6be69700..356df928c1 100644 --- a/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md +++ b/talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md @@ -14,11 +14,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] ; `updateOrganization?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result`: \{ `data`: \{ `organizations?`: `undefined` ; `updateOrganization`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} \} \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) +[src/components/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L4) ___ @@ -28,14 +28,14 @@ ___ #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) +[src/components/OrgUpdate/OrgUpdateMocks.ts:109](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L109) ___ ### MOCKS\_ERROR\_UPDATE\_ORGLIST -• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] +• `Const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr?`: `undefined` ; `request`: \{ `query`: `DocumentNode` = ORGANIZATIONS\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `organizations`: \{ `_id`: `string` = '123'; `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `admins`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \}[] ; `blockedUsers`: `never`[] = []; `creator`: \{ `email`: `string` = 'johndoe@example.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `description`: `string` = 'Equitable Access to STEM Education Jobs'; `image`: ``null`` = null; `members`: \{ `_id`: `string` = '123'; `email`: `string` = 'johndoe@gmail.com'; `firstName`: `string` = 'John'; `lastName`: `string` = 'Doe' \} ; `membershipRequests`: \{ `_id`: `string` = '456'; `user`: \{ `email`: `string` = 'samsmith@gmail.com'; `firstName`: `string` = 'Sam'; `lastName`: `string` = 'Smith' \} \} ; `name`: `string` = 'Palisadoes'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \}[] \} \} \} \| \{ `erorr`: `Error` ; `request`: \{ `query`: `DocumentNode` = UPDATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is an updated test organization'; `id`: `string` = '123'; `image`: `File` ; `name`: `string` = 'Updated Organization'; `userRegistrationRequired`: `boolean` = true; `visibleInSearch`: `boolean` = false \} \} ; `result?`: `undefined` \})[] #### Defined in -[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) +[src/components/OrgUpdate/OrgUpdateMocks.ts:119](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrgUpdate/OrgUpdateMocks.ts#L119) diff --git a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md index 3373dfba77..1f3d0f7f15 100644 --- a/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md +++ b/talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) +[src/components/OrganizationCardStart/OrganizationCardStart.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L11) diff --git a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md index 0ac1092231..e72bc4b169 100644 --- a/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md index 9c224ae607..149ddf73b5 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItem.tsx#L21) +[src/components/OrganizationDashCards/CardItem.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItem.tsx#L21) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md index 692656d1a2..c837ff6ae3 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) +[src/components/OrganizationDashCards/CardItemLoading.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/CardItemLoading.tsx#L4) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md index 70a44543bd..4874366105 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md @@ -29,4 +29,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/DashboardCard.tsx#L6) +[src/components/OrganizationDashCards/DashboardCard.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCard.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md index 91b0703d9b..48551c741d 100644 --- a/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md +++ b/talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) +[src/components/OrganizationDashCards/DashboardCardLoading.tsx:6](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L6) diff --git a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md index c6dad41ad4..8abc38e92f 100644 --- a/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md +++ b/talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) +[src/components/OrganizationScreen/OrganizationScreen.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/OrganizationScreen/OrganizationScreen.tsx#L14) diff --git a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md index 21e0bcecc6..2b35c78487 100644 --- a/talawa-admin-docs/modules/components_PaginationList_PaginationList.md +++ b/talawa-admin-docs/modules/components_PaginationList_PaginationList.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/PaginationList/PaginationList.tsx:21](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/PaginationList/PaginationList.tsx#L21) +[src/components/PaginationList/PaginationList.tsx:21](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/PaginationList/PaginationList.tsx#L21) diff --git a/talawa-admin-docs/modules/components_Pagination_Pagination.md b/talawa-admin-docs/modules/components_Pagination_Pagination.md index e37f21bc41..d4d4be6cd8 100644 --- a/talawa-admin-docs/modules/components_Pagination_Pagination.md +++ b/talawa-admin-docs/modules/components_Pagination_Pagination.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/Pagination/Pagination.tsx:20](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/Pagination/Pagination.tsx#L20) +[src/components/Pagination/Pagination.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/Pagination/Pagination.tsx#L20) diff --git a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md index 62534ad19d..1f48f3cb87 100644 --- a/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md +++ b/talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/SecuredRoute/SecuredRoute.tsx#L7) +[src/components/SecuredRoute/SecuredRoute.tsx:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SecuredRoute/SecuredRoute.tsx#L7) diff --git a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md index 84a03d943b..11c00f6131 100644 --- a/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md +++ b/talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) +[src/components/SuperAdminScreen/SuperAdminScreen.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L11) diff --git a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md index 557acf05a2..9874a5c25e 100644 --- a/talawa-admin-docs/modules/components_TableLoader_TableLoader.md +++ b/talawa-admin-docs/modules/components_TableLoader_TableLoader.md @@ -30,4 +30,4 @@ #### Defined in -[src/components/TableLoader/TableLoader.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/TableLoader/TableLoader.tsx#L11) +[src/components/TableLoader/TableLoader.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/TableLoader/TableLoader.tsx#L11) diff --git a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md index 7e0eb866b8..f8f040f88e 100644 --- a/talawa-admin-docs/modules/components_UserListCard_UserListCard.md +++ b/talawa-admin-docs/modules/components_UserListCard_UserListCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserListCard/UserListCard.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserListCard/UserListCard.tsx#L24) +[src/components/UserListCard/UserListCard.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserListCard/UserListCard.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md index 7a1c6ca0e8..517a6d692f 100644 --- a/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md +++ b/talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) +[src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md index 7b307c2724..84480b9f02 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md +++ b/talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) +[src/components/UserPortal/ChatRoom/ChatRoom.tsx:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L14) diff --git a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md index ccae691ac6..9d36774a58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) +[src/components/UserPortal/CommentCard/CommentCard.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/CommentCard/CommentCard.tsx#L27) diff --git a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md index a5aafe0eea..f40934d0f8 100644 --- a/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) +[src/components/UserPortal/ContactCard/ContactCard.tsx:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/ContactCard/ContactCard.tsx#L15) diff --git a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md index 21c015a9fc..c40b5fd806 100644 --- a/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) +[src/components/UserPortal/DonationCard/DonationCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/DonationCard/DonationCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md index 217ddfbb5c..564eb9afa7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/EventCard/EventCard.tsx#L38) +[src/components/UserPortal/EventCard/EventCard.tsx:38](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/EventCard/EventCard.tsx#L38) diff --git a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md index 1e6cf20eb7..4b80b3969f 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Login_Login.md +++ b/talawa-admin-docs/modules/components_UserPortal_Login_Login.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Login/Login.tsx:20](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/Login/Login.tsx#L20) +[src/components/UserPortal/Login/Login.tsx:20](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Login/Login.tsx#L20) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md index ffc3793734..c7b1e8643e 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) +[src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L13) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md index 77b275a94b..492e7a44c7 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) +[src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L30) diff --git a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md index f4c16a9089..6902fe678a 100644 --- a/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) +[src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:18](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L18) diff --git a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md index c01751e2ea..a3497d6bca 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) +[src/components/UserPortal/PeopleCard/PeopleCard.tsx:12](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L12) diff --git a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md index 083d27bbff..533ef95663 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md +++ b/talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/PostCard/PostCard.tsx#L71) +[src/components/UserPortal/PostCard/PostCard.tsx:71](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PostCard/PostCard.tsx#L71) diff --git a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md index 5b8afb5d03..8ce7350f58 100644 --- a/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md +++ b/talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) +[src/components/UserPortal/PromotedPost/PromotedPost.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L10) diff --git a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md index 899bed4678..7865759c03 100644 --- a/talawa-admin-docs/modules/components_UserPortal_Register_Register.md +++ b/talawa-admin-docs/modules/components_UserPortal_Register_Register.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/Register/Register.tsx:19](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/Register/Register.tsx#L19) +[src/components/UserPortal/Register/Register.tsx:19](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/Register/Register.tsx#L19) diff --git a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md index 06d855e650..b834c74894 100644 --- a/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md +++ b/talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) +[src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L5) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md index 0729b10f3c..265a3d12ef 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) +[src/components/UserPortal/UserNavbar/UserNavbar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md index 0f502c5afa..d31979578d 100644 --- a/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md +++ b/talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) +[src/components/UserPortal/UserSidebar/UserSidebar.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L16) diff --git a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md index 0054d635e7..6e9f01258e 100644 --- a/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md +++ b/talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md @@ -27,4 +27,4 @@ #### Defined in -[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UserUpdate/UserUpdate.tsx#L24) +[src/components/UserUpdate/UserUpdate.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UserUpdate/UserUpdate.tsx#L24) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md index 3f3cadc25c..85305b69e0 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md @@ -12,8 +12,8 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = '123'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = '123'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USERTYPE\_MUTATION; `variables`: \{ `id`: `string` = '123'; `organizationId?`: `undefined` = 'abc'; `orgid?`: `undefined` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType`: `string` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType`: \{ `data`: \{ `id`: `string` = '123' \} \} \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = REMOVE\_MEMBER\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId?`: `undefined` = 'abc'; `orgid`: `string` = 'abc'; `role?`: `undefined` = 'ADMIN'; `userId?`: `undefined` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid`: `string` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string` = '123' \} ; `updateUserRoleInOrganization?`: `undefined` ; `updateUserType?`: `undefined` \} \} \} \| \{ `request`: \{ `query`: `DocumentNode` = UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION; `variables`: \{ `id?`: `undefined` = '456'; `organizationId`: `string` = 'abc'; `orgid?`: `undefined` = 'abc'; `role`: `string` = 'ADMIN'; `userId`: `string` = '123'; `userType?`: `undefined` = 'ADMIN'; `userid?`: `undefined` = '123' \} \} ; `result`: \{ `data`: \{ `removeMember?`: `undefined` ; `updateUserRoleInOrganization`: \{ `_id`: `string` = '123' \} ; `updateUserType?`: `undefined` \} \} \})[] #### Defined in -[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UsersTableItem/UserTableItemMocks.ts#L7) +[src/components/UsersTableItem/UserTableItemMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UserTableItemMocks.ts#L7) diff --git a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md index 51d199f060..c1e49109f4 100644 --- a/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md +++ b/talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md @@ -26,4 +26,4 @@ #### Defined in -[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/UsersTableItem/UsersTableItem.tsx#L25) +[src/components/UsersTableItem/UsersTableItem.tsx:25](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/UsersTableItem/UsersTableItem.tsx#L25) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md index a34cf4ad15..f35bdef35a 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) +[src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:4](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L4) diff --git a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md index a837cd2ff7..dfc53edd9f 100644 --- a/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md +++ b/talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md @@ -20,4 +20,4 @@ #### Defined in -[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) +[src/components/plugins/DummyPlugin/DummyPlugin.tsx:5](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L5) diff --git a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md index 2ea2eef318..631fb56671 100644 --- a/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md +++ b/talawa-admin-docs/modules/screens_BlockUser_BlockUser.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/BlockUser/BlockUser.tsx#L32) +[src/screens/BlockUser/BlockUser.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/BlockUser/BlockUser.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md index 125e326827..33bbf8f7ec 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/EventDashboard/EventDashboard.tsx#L10) +[src/screens/EventDashboard/EventDashboard.tsx:10](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.tsx#L10) diff --git a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md index ed66dd69ae..55d32ca1f5 100644 --- a/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md +++ b/talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md @@ -17,7 +17,7 @@ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) +[src/screens/EventDashboard/EventDashboard.mocks.ts:69](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L69) ___ @@ -27,4 +27,4 @@ ___ #### Defined in -[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) +[src/screens/EventDashboard/EventDashboard.mocks.ts:102](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/EventDashboard/EventDashboard.mocks.ts#L102) diff --git a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md index ec4c82cebe..b326d5e77f 100644 --- a/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md +++ b/talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/ForgotPassword/ForgotPassword.tsx#L22) +[src/screens/ForgotPassword/ForgotPassword.tsx:22](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/ForgotPassword/ForgotPassword.tsx#L22) diff --git a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md index 9ac9392d4e..75b2f9d03a 100644 --- a/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md +++ b/talawa-admin-docs/modules/screens_LoginPage_LoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/LoginPage/LoginPage.tsx#L44) +[src/screens/LoginPage/LoginPage.tsx:44](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/LoginPage/LoginPage.tsx#L44) diff --git a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md index 365c329932..3775c53c7c 100644 --- a/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md +++ b/talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md @@ -29,7 +29,7 @@ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/MemberDetail/MemberDetail.tsx#L28) +[src/screens/MemberDetail/MemberDetail.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L28) ___ @@ -49,7 +49,7 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/MemberDetail/MemberDetail.tsx#L328) +[src/screens/MemberDetail/MemberDetail.tsx:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L328) ___ @@ -69,4 +69,4 @@ ___ #### Defined in -[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/MemberDetail/MemberDetail.tsx#L320) +[src/screens/MemberDetail/MemberDetail.tsx:320](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/MemberDetail/MemberDetail.tsx#L320) diff --git a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md index d168d24636..c9f5d05463 100644 --- a/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md +++ b/talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgContribution/OrgContribution.tsx#L11) +[src/screens/OrgContribution/OrgContribution.tsx:11](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgContribution/OrgContribution.tsx#L11) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgList.md b/talawa-admin-docs/modules/screens_OrgList_OrgList.md index e87d7acccd..04775362ee 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgList.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgList.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgList/OrgList.tsx:34](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrgList.tsx#L34) +[src/screens/OrgList/OrgList.tsx:34](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgList.tsx#L34) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md index d12d503bf7..95d493570c 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md @@ -15,11 +15,11 @@ ### MOCKS -• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = 'ActionItemCategory 1 updated'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] +• `Const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean` = true; `query`: `DocumentNode` = ORGANIZATION\_CONNECTION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter`: `string` = ''; `first`: `number` = 8; `id?`: `undefined` = '456'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy`: `string` = 'createdAt\_ASC'; `skip`: `number` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization?`: `undefined` ; `organizationsConnection`: `InterfaceOrgConnectionInfoType`[] = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = USER\_ORGANIZATION\_LIST; `variables`: \{ `address?`: `undefined` ; `description?`: `undefined` = 'This is a new update'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id`: `string` = '123'; `image?`: `undefined` ; `name?`: `undefined` = ''; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired?`: `undefined` = true; `visibleInSearch?`: `undefined` = false \} \} ; `result`: \{ `data`: `InterfaceUserType` = superAdminUser \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_SAMPLE\_ORGANIZATION\_MUTATION; `variables?`: `undefined` \} ; `result`: \{ `data`: \{ `createOrganization?`: `undefined` ; `createSampleOrganization`: \{ `id`: `string` = '1'; `name`: `string` = 'Sample Organization' \} ; `organizationsConnection?`: `undefined` = organizations \} \} \} \| \{ `request`: \{ `notifyOnNetworkStatusChange?`: `undefined` = true; `query`: `DocumentNode` = CREATE\_ORGANIZATION\_MUTATION; `variables`: \{ `address`: \{ `city`: `string` = 'Kingston'; `countryCode`: `string` = 'JM'; `dependentLocality`: `string` = 'Sample Dependent Locality'; `line1`: `string` = '123 Jamaica Street'; `line2`: `string` = 'Apartment 456'; `postalCode`: `string` = 'JM12345'; `sortingCode`: `string` = 'ABC-123'; `state`: `string` = 'Kingston Parish' \} ; `description`: `string` = 'This is a dummy organization'; `filter?`: `undefined` = ''; `first?`: `undefined` = 8; `id?`: `undefined` = '456'; `image`: `string` = ''; `name`: `string` = 'Dummy Organization'; `orderBy?`: `undefined` = 'createdAt\_ASC'; `skip?`: `undefined` = 0; `userRegistrationRequired`: `boolean` = false; `visibleInSearch`: `boolean` = true \} \} ; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string` = '1' \} ; `createSampleOrganization?`: `undefined` ; `organizationsConnection?`: `undefined` = organizations \} \} \})[] #### Defined in -[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrgListMocks.ts#L101) +[src/screens/OrgList/OrgListMocks.ts:101](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L101) ___ @@ -29,7 +29,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrgListMocks.ts#L235) +[src/screens/OrgList/OrgListMocks.ts:235](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L235) ___ @@ -39,7 +39,7 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrgListMocks.ts#L171) +[src/screens/OrgList/OrgListMocks.ts:171](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L171) ___ @@ -49,4 +49,4 @@ ___ #### Defined in -[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrgListMocks.ts#L199) +[src/screens/OrgList/OrgListMocks.ts:199](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrgListMocks.ts#L199) diff --git a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md index 394719cb18..70df93939d 100644 --- a/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md +++ b/talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md @@ -29,4 +29,4 @@ Represents the organization modal component. #### Defined in -[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgList/OrganizationModal.tsx#L58) +[src/screens/OrgList/OrganizationModal.tsx:58](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgList/OrganizationModal.tsx#L58) diff --git a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md index a0a7e60edf..a21030a9eb 100644 --- a/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md +++ b/talawa-admin-docs/modules/screens_OrgPost_OrgPost.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgPost/OrgPost.tsx#L35) +[src/screens/OrgPost/OrgPost.tsx:35](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgPost/OrgPost.tsx#L35) diff --git a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md index 3153480ff4..7ea5d95389 100644 --- a/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md +++ b/talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrgSettings/OrgSettings.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrgSettings/OrgSettings.tsx#L16) +[src/screens/OrgSettings/OrgSettings.tsx:13](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrgSettings/OrgSettings.tsx#L13) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md index c43cbabc28..7fb0774b3c 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) +[src/screens/OrganizationDashboard/OrganizationDashboard.tsx:32](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L32) diff --git a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md index ddbb238722..58a98c70e1 100644 --- a/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md +++ b/talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:197](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L197) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:281](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L281) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) +[src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md index 2cd4432df5..5ea99e50ac 100644 --- a/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md +++ b/talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) +[src/screens/OrganizationEvents/OrganizationEvents.tsx:29](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationEvents/OrganizationEvents.tsx#L29) diff --git a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md index bfaee22a43..6169d2109b 100644 --- a/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md +++ b/talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) +[src/screens/OrganizationPeople/OrganizationPeople.tsx:28](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/OrganizationPeople/OrganizationPeople.tsx#L28) diff --git a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md index 6fedf0c236..580ae063d3 100644 --- a/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md +++ b/talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/PageNotFound/PageNotFound.tsx#L8) +[src/screens/PageNotFound/PageNotFound.tsx:8](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/PageNotFound/PageNotFound.tsx#L8) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md index a17883d8fe..314d6c9dfd 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Chat/Chat.tsx#L30) +[src/screens/UserPortal/Chat/Chat.tsx:30](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Chat/Chat.tsx#L30) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md index 9c86fb8231..ebd7721aa6 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Donate/Donate.tsx#L27) +[src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md index 7908b915fc..b99b7dca32 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Events_Events.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Events/Events.tsx#L50) +[src/screens/UserPortal/Events/Events.tsx:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Events/Events.tsx#L50) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md index c79c603f80..c3820ac902 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Home_Home.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Home/Home.tsx#L79) +[src/screens/UserPortal/Home/Home.tsx:79](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Home/Home.tsx#L79) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md index 5344f8edce..c59cfe6ad9 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Organizations/Organizations.tsx#L27) +[src/screens/UserPortal/Organizations/Organizations.tsx:27](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Organizations/Organizations.tsx#L27) diff --git a/talawa-admin-docs/modules/screens_UserPortal_People_People.md b/talawa-admin-docs/modules/screens_UserPortal_People_People.md index 97080dbed9..8e7d871987 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_People_People.md +++ b/talawa-admin-docs/modules/screens_UserPortal_People_People.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/People/People.tsx:26](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/People/People.tsx#L26) +[src/screens/UserPortal/People/People.tsx:26](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/People/People.tsx#L26) diff --git a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md index 43ba2bf0d1..fb7a967028 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md +++ b/talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/Settings/Settings.tsx#L16) +[src/screens/UserPortal/Settings/Settings.tsx:16](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/Settings/Settings.tsx#L16) diff --git a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md index 81d3a45e8b..ddb0371bf4 100644 --- a/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md +++ b/talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) +[src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx:43](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/UserPortal/UserLoginPage/UserLoginPage.tsx#L43) diff --git a/talawa-admin-docs/modules/screens_Users_Users.md b/talawa-admin-docs/modules/screens_Users_Users.md index 4de582929f..a87c93404e 100644 --- a/talawa-admin-docs/modules/screens_Users_Users.md +++ b/talawa-admin-docs/modules/screens_Users_Users.md @@ -20,4 +20,4 @@ #### Defined in -[src/screens/Users/Users.tsx:24](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/Users/Users.tsx#L24) +[src/screens/Users/Users.tsx:24](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/Users.tsx#L24) diff --git a/talawa-admin-docs/modules/screens_Users_UsersMocks.md b/talawa-admin-docs/modules/screens_Users_UsersMocks.md index 0b1e31ece2..31b72fc622 100644 --- a/talawa-admin-docs/modules/screens_Users_UsersMocks.md +++ b/talawa-admin-docs/modules/screens_Users_UsersMocks.md @@ -18,7 +18,7 @@ #### Defined in -[src/screens/Users/UsersMocks.ts:392](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/Users/UsersMocks.ts#L392) +[src/screens/Users/UsersMocks.ts:392](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L392) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:7](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/Users/UsersMocks.ts#L7) +[src/screens/Users/UsersMocks.ts:7](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L7) ___ @@ -38,4 +38,4 @@ ___ #### Defined in -[src/screens/Users/UsersMocks.ts:233](https://github.com/meetulr/talawa-admin/blob/40ecfbe/src/screens/Users/UsersMocks.ts#L233) +[src/screens/Users/UsersMocks.ts:233](https://github.com/PalisadoesFoundation/talawa-admin/blob/12d9229/src/screens/Users/UsersMocks.ts#L233) From e80d34a250004966e9512b51694ec3e32b8bf9d8 Mon Sep 17 00:00:00 2001 From: meetul Date: Mon, 12 Feb 2024 00:02:59 +0530 Subject: [PATCH 14/14] add wait to tests --- .../OrgActionItemCategories.test.tsx | 36 ++++++++++++++++++- src/screens/OrgSettings/OrgSettings.test.tsx | 15 +++++++- 2 files changed, 49 insertions(+), 2 deletions(-) diff --git a/src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx b/src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx index d1daff0aea..f1ab510369 100644 --- a/src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx +++ b/src/components/OrgActionItemCategories/OrgActionItemCategories.test.tsx @@ -1,5 +1,11 @@ import React from 'react'; -import { render, screen, fireEvent, waitFor } from '@testing-library/react'; +import { + render, + screen, + fireEvent, + waitFor, + act, +} from '@testing-library/react'; import userEvent from '@testing-library/user-event'; import 'jest-localstorage-mock'; import { MockedProvider } from '@apollo/client/testing'; @@ -27,6 +33,14 @@ jest.mock('react-toastify', () => ({ }, })); +async function wait(ms = 100): Promise { + await act(() => { + return new Promise((resolve) => { + setTimeout(resolve, ms); + }); + }); +} + const link = new StaticMockLink(MOCKS, true); const link2 = new StaticMockLink(MOCKS_ERROR_QUERY, true); const link3 = new StaticMockLink(MOCKS_ERROR_MUTATIONS, true); @@ -52,6 +66,8 @@ describe('Testing Action Item Categories Component', () => {
); + await wait(); + await waitFor(() => { expect(getByText(translations.createButton)).toBeInTheDocument(); }); @@ -71,6 +87,8 @@ describe('Testing Action Item Categories Component', () => {
); + await wait(); + await waitFor(() => { expect(queryByText(translations.createButton)).not.toBeInTheDocument(); }); @@ -90,6 +108,8 @@ describe('Testing Action Item Categories Component', () => {
); + await wait(); + await waitFor(() => { userEvent.click(screen.getByTestId('actionItemCategoryModalOpenBtn')); userEvent.click(screen.getByTestId('actionItemCategoryModalCloseBtn')); @@ -117,6 +137,8 @@ describe('Testing Action Item Categories Component', () => {
); + await wait(); + await waitFor(() => { userEvent.click(screen.getByTestId('actionItemCategoryModalOpenBtn')); userEvent.type( @@ -146,6 +168,8 @@ describe('Testing Action Item Categories Component', () => {
); + await wait(); + await waitFor(() => { userEvent.click(screen.getByTestId('actionItemCategoryModalOpenBtn')); userEvent.type( @@ -175,6 +199,8 @@ describe('Testing Action Item Categories Component', () => {
); + await wait(); + await waitFor(() => { userEvent.click( screen.getAllByTestId('actionItemCategoryUpdateModalOpenBtn')[0] @@ -210,6 +236,8 @@ describe('Testing Action Item Categories Component', () => {
); + await wait(); + await waitFor(() => { userEvent.click( screen.getAllByTestId('actionItemCategoryUpdateModalOpenBtn')[0] @@ -245,6 +273,8 @@ describe('Testing Action Item Categories Component', () => {
); + await wait(); + await waitFor(() => { userEvent.click( screen.getAllByTestId('actionItemCategoryUpdateModalOpenBtn')[0] @@ -280,6 +310,8 @@ describe('Testing Action Item Categories Component', () => {
); + await wait(); + await waitFor(() => { userEvent.click(screen.getAllByTestId('disabilityStatusButton')[0]); }); @@ -311,6 +343,8 @@ describe('Testing Action Item Categories Component', () => {
); + await wait(); + await waitFor(() => { userEvent.click(screen.getAllByTestId('disabilityStatusButton')[0]); }); diff --git a/src/screens/OrgSettings/OrgSettings.test.tsx b/src/screens/OrgSettings/OrgSettings.test.tsx index 144bc16709..245e7dfe17 100644 --- a/src/screens/OrgSettings/OrgSettings.test.tsx +++ b/src/screens/OrgSettings/OrgSettings.test.tsx @@ -1,6 +1,6 @@ import React from 'react'; import { MockedProvider } from '@apollo/react-testing'; -import { render, screen, waitFor } from '@testing-library/react'; +import { act, render, screen, waitFor } from '@testing-library/react'; import 'jest-location-mock'; import { I18nextProvider } from 'react-i18next'; import { Provider } from 'react-redux'; @@ -84,6 +84,14 @@ const MOCKS = [ const link = new StaticMockLink(MOCKS, true); +async function wait(ms = 100): Promise { + await act(() => { + return new Promise((resolve) => { + setTimeout(resolve, ms); + }); + }); +} + const translations = JSON.parse( JSON.stringify(i18nForTest.getDataByLanguage('en')?.translation.orgSettings) ); @@ -116,6 +124,9 @@ describe('Organisation Settings Page', () => { ); + + await wait(); + expect(screen.getAllByText(/Delete Organization/i)).toHaveLength(3); expect( screen.getByText( @@ -143,6 +154,8 @@ describe('Organisation Settings Page', () => { ); + await wait(); + await waitFor(() => { userEvent.click(screen.getByTestId('actionItemCategoriesSettings')); expect(