forked from activist-org/activist
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
155 changed files
with
3,948 additions
and
1,880 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 |
---|---|---|
|
@@ -16,3 +16,10 @@ DATABASE_PASSWORD="postgres" | |
|
||
SECRET_KEY='secret' | ||
DEBUG='1' | ||
|
||
ACTIVIST_EMAIL="[email protected]" | ||
EMAIL_HOST="smtp.activist.org" | ||
EMAIl_PORT="587" | ||
EMAIL_HOST_USER="[email protected]" | ||
EMAIL_HOST_PASSWORD="activist123!?" | ||
EMAIL_USE_TLS="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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Community discussion channels | ||
- name: 👋 Community discussion channels | ||
url: https://matrix.to/#/#activist_community:matrix.org | ||
about: Join us in our public Matrix chat rooms! |
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
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,20 @@ | ||
""" | ||
Enums for the authentication app. | ||
More details about Enums can be found in schema section on Figma. | ||
""" | ||
|
||
from enum import Enum | ||
|
||
|
||
class StatusTypes(Enum): | ||
PENDING = 1 | ||
ACTIVE = 2 | ||
SUSPENDED = 3 | ||
BANNED = 4 | ||
|
||
|
||
class SupportEntityTypes(Enum): | ||
ORGANIZATION = 1 | ||
GROUP = 2 | ||
EVENT = 3 | ||
USER = 4 |
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
Oops, something went wrong.