Skip to content

Commit

Permalink
fixup! ✨(dashboard) rename qcr_auth to auth
Browse files Browse the repository at this point in the history
  • Loading branch information
ssorin committed Nov 18, 2024
1 parent c9c638f commit 78fd8de
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions src/dashboard/apps/auth/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Dashboard auth app."""
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Dashboard qcd_auth admin."""
"""Dashboard auth admin."""

from django.contrib import admin
from django.contrib.auth.admin import UserAdmin
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
"""Dashboard qcd_auth app base config."""
"""Dashboard auth app base config."""

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _


class UsersConfig(AppConfig):
"""qcd_auth app config."""
"""Auth app config."""

default_auto_field = "django.db.models.BigAutoField"
name = "apps.qcd_auth"
name = "apps.auth"
label = "qcd_auth"
verbose_name = _("Authentication")
1 change: 1 addition & 0 deletions src/dashboard/apps/auth/migrations/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Dashboard auth app migrations."""
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Dashboard qcd_auth models."""
"""Dashboard auth models."""

from django.contrib.auth.models import AbstractUser

Expand Down
1 change: 1 addition & 0 deletions src/dashboard/apps/auth/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Dashboard auth app tests."""
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Dashboard qcd_auth models tests."""
"""Dashboard auth models tests."""

import pytest
from django.contrib.auth import get_user_model
Expand Down
1 change: 0 additions & 1 deletion src/dashboard/apps/qcd_auth/__init__.py

This file was deleted.

1 change: 0 additions & 1 deletion src/dashboard/apps/qcd_auth/migrations/__init__.py

This file was deleted.

1 change: 0 additions & 1 deletion src/dashboard/apps/qcd_auth/tests/__init__.py

This file was deleted.

0 comments on commit 78fd8de

Please sign in to comment.