-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #158 from zediious/0.4.5.2
Changes for 0.4.5.2
- Loading branch information
Showing
21 changed files
with
241 additions
and
71 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 |
---|---|---|
|
@@ -133,10 +133,10 @@ | |
EMAIL_BACKEND: str = 'django.core.mail.backends.console.EmailBackend' | ||
|
||
EMAIL_USE_TLS: bool = True | ||
EMAIL_HOST: str = str(getenv('EMAIL_HOST')) | ||
EMAIL_PORT: int = int(getenv('EMAIL_PORT')) | ||
EMAIL_HOST_USER: str = str(getenv('EMAIL_HOST_USER')) | ||
EMAIL_HOST_PASSWORD: str = str(getenv('EMAIL_HOST_PASSWORD')) | ||
EMAIL_HOST: str = str(getenv('EMAIL_HOST')) if str(getenv('EMAIL_HOST')) != '' else '[email protected]' | ||
EMAIL_PORT: int = int(getenv('EMAIL_PORT')) if getenv('EMAIL_PORT') != '' else 587 | ||
EMAIL_HOST_USER: str = str(getenv('EMAIL_HOST_USER')) if str(getenv('EMAIL_HOST_USER')) != '' else 'Test' | ||
EMAIL_HOST_PASSWORD: str = str(getenv('EMAIL_HOST_PASSWORD')) if str(getenv('EMAIL_HOST_PASSWORD')) != '' else '' | ||
|
||
# Database | ||
DATABASES: dict = {} | ||
|
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
43 changes: 43 additions & 0 deletions
43
raptorWeb/raptormc/migrations/0071_siteinformation_server_maintenance_message_and_more.py
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,43 @@ | ||
# Generated by Django 4.2.7 on 2024-04-25 17:05 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("raptormc", "0070_siteinformation_paypal_enabled_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="siteinformation", | ||
name="server_maintenance_message", | ||
field=models.CharField( | ||
default="Server is in maintenance mode!", | ||
help_text="Text shown in tooltip while hovering over a server in Maintenance Mode's status icon.", | ||
max_length=500, | ||
verbose_name="Server Maintenace Message", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="siteinformation", | ||
name="server_offline_message", | ||
field=models.CharField( | ||
default="Server is offline!", | ||
help_text="Text shown in tooltip while hovering over an offline server status icon.", | ||
max_length=500, | ||
verbose_name="Server Offline Message", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="siteinformation", | ||
name="server_online_message", | ||
field=models.CharField( | ||
default="Server is online!", | ||
help_text="Text shown in tooltip while hovering over an online server status icon.", | ||
max_length=500, | ||
verbose_name="Server Online Message", | ||
), | ||
), | ||
] |
49 changes: 49 additions & 0 deletions
49
...Web/raptormc/migrations/0072_alter_siteinformation_server_maintenance_message_and_more.py
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,49 @@ | ||
# Generated by Django 4.2.7 on 2024-04-25 17:13 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("raptormc", "0071_siteinformation_server_maintenance_message_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="siteinformation", | ||
name="server_maintenance_message", | ||
field=models.CharField( | ||
blank=True, | ||
default="Server is in maintenance mode!", | ||
help_text="Text shown in tooltip while hovering over a server in Maintenance Mode's status icon.", | ||
max_length=500, | ||
null=True, | ||
verbose_name="Server Maintenace Message", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="siteinformation", | ||
name="server_offline_message", | ||
field=models.CharField( | ||
blank=True, | ||
default="Server is offline!", | ||
help_text="Text shown in tooltip while hovering over an offline server status icon.", | ||
max_length=500, | ||
null=True, | ||
verbose_name="Server Offline Message", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="siteinformation", | ||
name="server_online_message", | ||
field=models.CharField( | ||
blank=True, | ||
default="Server is online!", | ||
help_text="Text shown in tooltip while hovering over an online server status icon.", | ||
max_length=500, | ||
null=True, | ||
verbose_name="Server Online Message", | ||
), | ||
), | ||
] |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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.