-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade Django to 2.0 * Upgrade pytest to fix pipenv conflicts * Include namespace in admin urls * Use class based JavaScript catalog * Replace core.urlresolvers by urls * Use user properties instead of functions * Specify on_delete for models * Merge branch 'master' into django_2_0_test # Conflicts: # Pipfile # Pipfile.lock # game/__init__.py * Replace urls.resolvers with urls pt 2 * Add test for on_delete * Specify Django 2.0 * Simplify admin urls + Black * Fix admin URL * Fix tests + upgrade * Install local common in travis * Merge branch 'master' into django_2_0_test * Upgrade dependencies * Improve model tests * Install local portal and common * Also install local aimmo * Fix RR migration tests * Install correct upgrade branches * Install autoconfig
- Loading branch information
1 parent
7f69153
commit aacebbc
Showing
35 changed files
with
492 additions
and
548 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
from aimmo import urls as aimmo_urls | ||
from django.conf.urls import include, url | ||
from django.contrib import admin | ||
from game import urls as game_urls | ||
from django.urls import path | ||
from portal import urls as portal_urls | ||
|
||
from game import urls as game_urls | ||
|
||
admin.autodiscover() | ||
|
||
urlpatterns = [ | ||
url(r'^', include(portal_urls)), | ||
url(r'^administration/', include(admin.site.urls)), | ||
url(r'^rapidrouter/', include(game_urls)), | ||
url(r'^aimmo/', include(aimmo_urls)), | ||
url(r"^", include(portal_urls)), | ||
path("administration/", admin.site.urls), | ||
url(r"^rapidrouter/", include(game_urls)), | ||
url(r"^aimmo/", include(aimmo_urls)), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.