Skip to content

Commit 2317e7d

Browse files
branch updated
2 parents a72d220 + c6102f5 commit 2317e7d

File tree

375 files changed

+8946
-11926
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

375 files changed

+8946
-11926
lines changed

.github/workflows/pull-request-review.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
runs-on: ubuntu-latest
1111
permissions:
1212
pull-requests: read
13-
contents: read
1413
steps:
1514
- name: Check CodeRabbit approval using GitHub Script
1615
uses: actions/github-script@v7

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
BASE_SHA=$(git merge-base ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }})
122122
123123
# Define sensitive files pattern
124-
SENSITIVE_FILES=".flake8 .pydocstyle pyproject.toml .env* vitest.config.js src/App.tsx index.html .github/** env.example .node-version .husky/** scripts/** src/style/** schema.graphql package.json package-lock.json tsconfig.json .gitignore .eslintrc.json .eslintignore .prettierrc .prettierignore vite.config.ts docker/docker-compose.prod.yaml docker/docker-compose.dev.yaml docker/Dockerfile.dev docker/Dockerfile.prod config/docker/setup/nginx.conf config/docker/setup/nginx.prod.conf CODEOWNERS LICENSE setup.ts .coderabbit.yaml CODE_OF_CONDUCT.md CODE_STYLE.md CONTRIBUTING.md DOCUMENTATION.md INSTALLATION.md ISSUE_GUIDELINES.md PR_GUIDELINES.md README.md *.pem *.key *.cert *.password *.secret *.credentials .nojekyll yarn.lock docs/docusaurus.config.ts docs/sidebar* CNAME"
124+
SENSITIVE_FILES=".flake8 .pydocstyle pyproject.toml .env* vitest.config.js src/App.tsx .github/** env.example .node-version .husky/** scripts/** src/style/** schema.graphql package.json package-lock.json tsconfig.json .gitignore .eslintrc.json .eslintignore .prettierrc .prettierignore vite.config.ts docker/docker-compose.prod.yaml docker/docker-compose.dev.yaml docker/Dockerfile.dev docker/Dockerfile.prod config/docker/setup/nginx.conf config/docker/setup/nginx.prod.conf CODEOWNERS LICENSE setup.ts .coderabbit.yaml CODE_OF_CONDUCT.md CODE_STYLE.md CONTRIBUTING.md DOCUMENTATION.md INSTALLATION.md ISSUE_GUIDELINES.md PR_GUIDELINES.md README.md *.pem *.key *.cert *.password *.secret *.credentials .nojekyll yarn.lock docs/docusaurus.config.ts docs/sidebar* CNAME"
125125
126126
# Check for changes in sensitive files
127127
CHANGED_UNAUTH_FILES=""
@@ -172,8 +172,8 @@ jobs:
172172
# Get the base branch ref
173173
BASE_SHA=$(git merge-base ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }})
174174
175-
# Count all changed files
176-
ALL_CHANGED_FILES_COUNT=$(git diff --name-only --diff-filter=ACMRT $BASE_SHA ${{ github.event.pull_request.head.sha }} | wc -l | tr -d ' ')
175+
# Count all changed files excluding .md files
176+
ALL_CHANGED_FILES_COUNT=$(git diff --name-only --diff-filter=ACMRT $BASE_SHA ${{ github.event.pull_request.head.sha }} | grep -v -i "\.md$" | wc -l | tr -d ' ')
177177
echo "all_changed_files_count=$ALL_CHANGED_FILES_COUNT" >> $GITHUB_OUTPUT
178178
179179
- name: Echo number of changed files

.github/workflows/stale.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name: Mark stale issues and pull requests
1313

1414
on:
1515
schedule:
16-
- cron: "0 0 * * *"
16+
- cron: "0 0 * * *"
1717

1818
permissions:
1919
issues: write
@@ -24,19 +24,19 @@ jobs:
2424
name: Process Stale Issues and PRs
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/stale@v9
28-
with:
29-
repo-token: ${{ secrets.GITHUB_TOKEN }}
30-
stale-issue-message: 'This issue did not get any activity in the past 10 days and will be closed in 180 days if no update occurs. Please check if the develop branch has fixed it and report again or close the issue.'
31-
stale-pr-message: 'This pull request did not get any activity in the past 10 days and will be closed in 180 days if no update occurs. Please verify it has no conflicts with the develop branch and rebase if needed. Mention it now if you need help or give permission to other people to finish your work.'
32-
close-issue-message: 'This issue did not get any activity in the past 180 days and thus has been closed. Please check if the newest release or develop branch has it fixed. Please, create a new issue if the issue is not fixed.'
33-
close-pr-message: 'This pull request did not get any activity in the past 180 days and thus has been closed.'
34-
stale-issue-label: 'no-issue-activity'
35-
stale-pr-label: 'no-pr-activity'
36-
days-before-stale: 7
37-
days-before-close: 180
38-
remove-stale-when-updated: true
39-
exempt-all-milestones: true
40-
exempt-pr-labels: 'wip'
41-
exempt-issue-labels: 'wip'
42-
operations-per-run: 50
27+
- uses: actions/stale@v9
28+
with:
29+
repo-token: ${{ secrets.GITHUB_TOKEN }}
30+
stale-issue-message: 'This issue did not get any activity in the past 10 days and will be closed in 180 days if no update occurs. Please check if the develop branch has fixed it and report again or close the issue.'
31+
stale-pr-message: 'This pull request did not get any activity in the past 10 days and will be closed in 180 days if no update occurs. Please verify it has no conflicts with the develop branch and rebase if needed. Mention it now if you need help or give permission to other people to finish your work.'
32+
close-issue-message: 'This issue did not get any activity in the past 180 days and thus has been closed. Please check if the newest release or develop branch has it fixed. Please, create a new issue if the issue is not fixed.'
33+
close-pr-message: 'This pull request did not get any activity in the past 180 days and thus has been closed.'
34+
stale-issue-label: 'no-issue-activity'
35+
stale-pr-label: 'no-pr-activity'
36+
days-before-stale: 7
37+
days-before-close: 180
38+
remove-stale-when-updated: true
39+
exempt-all-milestones: true
40+
exempt-pr-labels: 'wip'
41+
exempt-issue-labels: 'wip'
42+
operations-per-run: 30
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[Admin Docs](/)
2+
3+
***
4+
5+
# Variable: ADD\_ADVERTISEMENT\_MUTATION
6+
7+
> `const` **ADD\_ADVERTISEMENT\_MUTATION**: `DocumentNode`
8+
9+
Defined in: [src/GraphQl/Mutations/AdvertisementMutations.ts:14](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/AdvertisementMutations.ts#L14)
10+
11+
GraphQL mutation to create an advertisement.
12+
13+
## Param
14+
15+
Global identifier of the associated organization.
16+
17+
## Param
18+
19+
Name of the advertisement.
20+
21+
## Param
22+
23+
Type of the advertisement.
24+
25+
## Param
26+
27+
Date time at which the advertised event starts.
28+
29+
## Param
30+
31+
Date time at which the advertised event ends.
32+
33+
## Param
34+
35+
Custom information about the advertisement.
36+
37+
## Param
38+
39+
Attachments of the advertisement.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[Admin Docs](/)
2+
3+
***
4+
5+
# Variable: DELETE\_ADVERTISEMENT\_MUTATION
6+
7+
> `const` **DELETE\_ADVERTISEMENT\_MUTATION**: `DocumentNode`
8+
9+
Defined in: [src/GraphQl/Mutations/AdvertisementMutations.ts:80](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/AdvertisementMutations.ts#L80)
10+
11+
GraphQL mutation to delete an advertisement.
12+
13+
## Param
14+
15+
Global identifier of the advertisement.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[Admin Docs](/)
2+
3+
***
4+
5+
# Variable: UPDATE\_ADVERTISEMENT\_MUTATION
6+
7+
> `const` **UPDATE\_ADVERTISEMENT\_MUTATION**: `DocumentNode`
8+
9+
Defined in: [src/GraphQl/Mutations/AdvertisementMutations.ts:50](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/AdvertisementMutations.ts#L50)
10+
11+
GraphQL mutation to update an advertisement.
12+
13+
## Param
14+
15+
Global identifier of the advertisement.
16+
17+
## Param
18+
19+
Optional updated name of the advertisement
20+
21+
## Param
22+
23+
Optional updated description of the advertisement
24+
25+
## Param
26+
27+
Optional updated type of the advertisement
28+
29+
## Param
30+
31+
Optional updated starting date of the advertisement
32+
33+
## Param
34+
35+
Optional updated ending date of the advertisement

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **DONATE\_TO\_ORGANIZATION**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Mutations/mutations.ts:631](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L631)
9+
Defined in: [src/GraphQl/Mutations/mutations.ts:572](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L572)

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GET_FILE_PRESIGNEDURL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **GET\_FILE\_PRESIGNEDURL**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Mutations/mutations.ts:722](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L722)
9+
Defined in: [src/GraphQl/Mutations/mutations.ts:669](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L669)

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **LIKE\_POST**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Mutations/mutations.ts:557](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L557)
9+
Defined in: [src/GraphQl/Mutations/mutations.ts:498](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L498)

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/PRESIGNED_URL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **PRESIGNED\_URL**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Mutations/mutations.ts:711](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L711)
9+
Defined in: [src/GraphQl/Mutations/mutations.ts:658](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L658)

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **REGISTER\_EVENT**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Mutations/mutations.ts:573](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L573)
9+
Defined in: [src/GraphQl/Mutations/mutations.ts:514](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L514)

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **RESET\_COMMUNITY**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Mutations/mutations.ts:625](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L625)
9+
Defined in: [src/GraphQl/Mutations/mutations.ts:566](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L566)

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **UNLIKE\_POST**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Mutations/mutations.ts:565](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L565)
9+
Defined in: [src/GraphQl/Mutations/mutations.ts:506](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L506)

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY_PG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **UPDATE\_COMMUNITY\_PG**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Mutations/mutations.ts:581](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L581)
9+
Defined in: [src/GraphQl/Mutations/mutations.ts:522](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L522)

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **UPDATE\_EVENT\_MUTATION**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Mutations/mutations.ts:527](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L527)
9+
Defined in: [src/GraphQl/Mutations/mutations.ts:468](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L468)

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **UPDATE\_POST\_MUTATION**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Mutations/mutations.ts:514](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L514)
9+
Defined in: [src/GraphQl/Mutations/mutations.ts:455](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L455)

docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT_PG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **UPDATE\_SESSION\_TIMEOUT\_PG**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Mutations/mutations.ts:615](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L615)
9+
Defined in: [src/GraphQl/Mutations/mutations.ts:556](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Mutations/mutations.ts#L556)

docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md renamed to docs/docs/auto-docs/GraphQl/Queries/AdvertisementQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **ORGANIZATION\_ADVERTISEMENT\_LIST**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:248](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L248)
9+
Defined in: [src/GraphQl/Queries/AdvertisementQueries.ts:15](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/AdvertisementQueries.ts#L15)

docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> `const` **ORGANIZATION\_ADMINS\_LIST**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:328](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L328)
9+
Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:280](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L280)
1010

1111
GraphQL query to retrieve the list of admins for a specific organization.
1212

docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> `const` **ORGANIZATION\_FUNDS**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:349](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L349)
9+
Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:301](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L301)
1010

1111
GraphQL query to retrieve the list of members for a specific organization.
1212

docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> `const` **USER\_CREATED\_ORGANIZATIONS**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:303](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L303)
9+
Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:255](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L255)
1010

1111
GraphQL query to retrieve organizations created by a user.
1212

docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> `const` **VENUE\_LIST**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:371](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L371)
9+
Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:323](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/OrganizationQueries.ts#L323)
1010

1111
GraphQL query to retrieve the list of venues for a specific organization.
1212

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **ADMIN\_LIST**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:882](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L882)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:901](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L901)

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **BLOCK\_PAGE\_MEMBER\_LIST**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:637](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L637)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:656](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L656)

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **GET\_COMMUNITY\_DATA**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:1039](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L1039)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:1058](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L1058)

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA_PG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **GET\_COMMUNITY\_DATA\_PG**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:1015](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L1015)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:1034](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L1034)

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA_PG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA\_PG**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:1076](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L1076)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:1095](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L1095)

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_ORGANIZATION_DATA_PG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **GET\_ORGANIZATION\_DATA\_PG**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:526](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L526)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:545](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L545)

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_ORGANIZATION_EVENTS_PG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **GET\_ORGANIZATION\_EVENTS\_PG**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:474](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L474)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:493](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L493)

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_ORGANIZATION_POSTS_PG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **GET\_ORGANIZATION\_POSTS\_PG**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:505](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L505)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:524](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L524)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[Admin Docs](/)
2+
3+
***
4+
5+
# Variable: IS\_USER\_BLOCKED
6+
7+
> `const` **IS\_USER\_BLOCKED**: `DocumentNode`
8+
9+
Defined in: [src/GraphQl/Queries/Queries.ts:474](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L474)

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **MEMBERSHIP\_REQUEST**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:899](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L899)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:918](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L918)

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **MEMBERS\_LIST**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:618](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L618)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:637](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L637)

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST_PG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **MEMBERS\_LIST\_PG**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:599](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L599)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:618](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L618)

docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
> `const` **ORGANIZATIONS\_LIST**: `DocumentNode`
88
9-
Defined in: [src/GraphQl/Queries/Queries.ts:570](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L570)
9+
Defined in: [src/GraphQl/Queries/Queries.ts:589](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/GraphQl/Queries/Queries.ts#L589)

0 commit comments

Comments
 (0)