-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/graphql
- Loading branch information
Showing
20 changed files
with
1,193 additions
and
952 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ jobs: | |
- uses: actions/labeler@v5 | ||
with: | ||
configuration-path: .github/labeler.yml | ||
sync-labels: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ __pycache__ | |
.python-version | ||
.ruff_cache | ||
.vscode | ||
venv/ | ||
*.code-workspace | ||
*.local | ||
*.log | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
export const mockChaterDetailsData = { | ||
name: 'OWASP Test Chapter', | ||
suggested_location: 'Test City, Test Country', | ||
region: 'Test Region', | ||
is_active: true, | ||
tags: 'test-tag', | ||
updated_at: 1652129718, | ||
url: 'https://owasp.org/test-chapter', | ||
related_urls: [ | ||
'https://discord.com/test', | ||
'https://www.instagram.com/test', | ||
'https://www.linkedin.com/test', | ||
'https://www.youtube.com/test', | ||
'https://twitter.com/test', | ||
'https://meetup.com/test', | ||
], | ||
summary: 'This is a test chapter summary.', | ||
top_contributors: [ | ||
{ | ||
avatar_url: 'https://example.com/avatar1.jpg', | ||
name: 'Contributor 1', | ||
contributions_count: 10, | ||
}, | ||
{ | ||
avatar_url: 'https://example.com/avatar2.jpg', | ||
name: 'Contributor 2', | ||
contributions_count: 8, | ||
}, | ||
{ | ||
avatar_url: 'https://example.com/avatar3.jpg', | ||
name: 'Contributor 3', | ||
contributions_count: 6, | ||
}, | ||
{ | ||
avatar_url: 'https://example.com/avatar4.jpg', | ||
name: 'Contributor 4', | ||
contributions_count: 4, | ||
}, | ||
{ | ||
avatar_url: 'https://example.com/avatar5.jpg', | ||
name: 'Contributor 5', | ||
contributions_count: 2, | ||
}, | ||
{ | ||
avatar_url: 'https://example.com/avatar6.jpg', | ||
name: 'Contributor 6', | ||
contributions_count: 1, | ||
}, | ||
{ | ||
avatar_url: 'https://example.com/avatar7.jpg', | ||
name: 'Contributor 7', | ||
contributions_count: 1, | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.