Skip to content

Commit

Permalink
position stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
station committed Jul 26, 2016
1 parent 5a58f78 commit 1bcb621
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pokefront/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"""
from django.conf.urls import url
from django.contrib import admin
from frontend.views import PokeList, Sync, Filldata, ReleasePoke, EvolvePoke, Overview, SendConfig
from frontend.views import PokeList, Sync, Filldata, Position, ReleasePoke, EvolvePoke, Overview, SendConfig
from django.conf import settings
from django.conf.urls.static import static

Expand All @@ -24,6 +24,7 @@
url(r'^$', Overview.as_view()),
url(r'list/(?:(?P<account_id>\d+)/)?$', PokeList.as_view(), name='list'),
url(r'sync/(?:(?P<account_id>\d+)/)?$', Sync.as_view(), name='sync'),
url(r'position/(?:(?P<account_id>\d+)/)?$', Position.as_view(), name='position'),
url(r'release/(?:(?P<account_id>\d+)/(?:(?P<poke_id>\d+)/))?$', ReleasePoke.as_view(), name='release'),
url(r'evolve/(?:(?P<account_id>\d+)/(?:(?P<poke_id>\d+)/))?$', EvolvePoke.as_view(), name='evolve'),
url(r'fill/$', Filldata.as_view(), name='fill'),
Expand Down

0 comments on commit 1bcb621

Please sign in to comment.