Skip to content

Commit

Permalink
Remove django warnings in development environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhwaniartefact authored Sep 6, 2023
1 parent eecfb2f commit cf35510
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/dashboard/src/components/accounts/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@


class AccountsConfig(AppConfig):
default_auto_field = "django.db.models.AutoField"
name = "components.accounts"
verbose_name = "Dashboard Accounts"

Expand Down
6 changes: 6 additions & 0 deletions src/dashboard/src/components/administration/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class AdministrationAppConfig(AppConfig):
default_auto_field = "django.db.models.AutoField"
name = "components.administration"
6 changes: 6 additions & 0 deletions src/dashboard/src/fpr/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class FPRAppConfig(AppConfig):
default_auto_field = "django.db.models.AutoField"
name = "fpr"
1 change: 1 addition & 0 deletions src/dashboard/src/main/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@


class MainAppConfig(AppConfig):
default_auto_field = "django.db.models.AutoField"
name = "main"

def ready(self):
Expand Down

0 comments on commit cf35510

Please sign in to comment.