Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor #1

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading