mirror of
https://github.com/creyD/asiimov.git
synced 2026-06-12 17:12:23 +02:00
Added Functionality To Get Player Inventory
This commit is contained in:
@@ -12,8 +12,11 @@ urlpatterns = [
|
||||
path('search/<str:filter>', views.search, name='search'),
|
||||
path('profile/<int:steamID>', views.profile, name='profile'),
|
||||
path('profile/<int:steamID>/update', views.profile_update, name='profile_update'),
|
||||
path('profile/me', views.me, name='me'),
|
||||
path('profile/settings', views.me_settings, name='me_settings'),
|
||||
path('profile/<int:steamID>/inventory', views.profile_inventory, name='profile_inventory'),
|
||||
path('profile/<int:steamID>/inventory/update', views.profile_inventory_update, name='profile_inventory_update'),
|
||||
path('me', views.me, name='me'),
|
||||
path('me/settings', views.me_settings, name='me_settings'),
|
||||
path('me/inventory', views.me_inventory, name='me_inventory'),
|
||||
|
||||
path('help', views.help, name='help'),
|
||||
path('imprint', views.imprint, name='imprint'),
|
||||
|
||||
Reference in New Issue
Block a user