Skip to content

Commit

Permalink
Merge branch 'main' into issue-7-Setup_JWT_authentication_endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
someonebear authored Nov 30, 2024
2 parents 0236b0a + d4ac66a commit 5243e12
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions server/api/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"api.healthcheck",
# For localisations/translations
"rest_framework_simplejwt",
"bingo",
]

MIDDLEWARE = [
Expand Down
Empty file added server/bingo/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions server/bingo/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin # noqa

# Register your models here.
6 changes: 6 additions & 0 deletions server/bingo/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class BingoConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "bingo"
Empty file.
3 changes: 3 additions & 0 deletions server/bingo/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models # noqa

# Create your models here.
3 changes: 3 additions & 0 deletions server/bingo/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase # noqa

# Create your tests here.
3 changes: 3 additions & 0 deletions server/bingo/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.shortcuts import render # noqa

# Create your views here.

0 comments on commit 5243e12

Please sign in to comment.