Skip to content

Commit

Permalink
Merge pull request #1 from mandos21/refactor
Browse files Browse the repository at this point in the history
refactor
  • Loading branch information
mandos21 authored Aug 12, 2024
2 parents 1b6ab87 + 862908a commit d156e83
Show file tree
Hide file tree
Showing 18 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
from mongoengine import connect
from werkzeug.exceptions import HTTPException

from app.controllers.auth_controller import auth_bp
from app.controllers.encounter_controller import encounter_bp
from app.controllers.item_controller import item_bp
from app.controllers.roll_controller import roll_bp
from app.controllers.rolltable_controller import rolltable_bp
from app.controllers.room_controller import room_bp
from app.controllers.user_controller import user_bp
from app.views.auth import auth_bp
from app.views.encounter import encounter_bp
from app.views.item import item_bp
from app.views.roll import roll_bp
from app.views.rolltable import rolltable_bp
from app.views.room import room_bp
from app.views.user import user_bp
from app.utils.json_provider import CustomJSONProvider
from config.settings import settings

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest
from app.models.encounter import Encounter
from tests.controllers.controller_test_base import ControllerTestBase
from tests.views.test_view_base import ControllerTestBase


class EncounterControllerTestCase(ControllerTestBase):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest

from app.models.item import Item
from tests.controllers.controller_test_base import ControllerTestBase
from tests.views.test_view_base import ControllerTestBase


class ItemControllerTestCase(ControllerTestBase):
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from app.models.item import Item
from app.models.rolltable import RollTable
from tests.controllers.controller_test_base import ControllerTestBase
from tests.views.test_view_base import ControllerTestBase


class RollTableControllerTestCase(ControllerTestBase):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest
from app.models.room import Room
from tests.controllers.controller_test_base import ControllerTestBase
from tests.views.test_view_base import ControllerTestBase


class RoomControllerTestCase(ControllerTestBase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from app.models.item import Item
from app.models.user import User
from tests.controllers.controller_test_base import ControllerTestBase
from tests.views.test_view_base import ControllerTestBase


class UserControllerTestCase(ControllerTestBase):
Expand Down
File renamed without changes.

0 comments on commit d156e83

Please sign in to comment.