Allow changing the asset filter list
This commit is contained in:
16
app/urls.py
16
app/urls.py
@@ -284,4 +284,20 @@ urlpatterns = [
|
||||
assets.AssetRestrictionDelete.as_view(),
|
||||
name="assetrestriction_delete",
|
||||
),
|
||||
# Asset group filters
|
||||
path(
|
||||
"assetfilter/<str:group_id>/flip/<str:symbol>/",
|
||||
assets.AssetFilterFlip.as_view(),
|
||||
name="assetfilter_flip",
|
||||
),
|
||||
path(
|
||||
"assetfilter/<str:group_id>/delete/<str:symbol>/",
|
||||
assets.AssetFilterDelete.as_view(),
|
||||
name="assetfilter_delete",
|
||||
),
|
||||
path(
|
||||
"assetfilter/<str:type>/view/<str:group_id>/",
|
||||
assets.AssetFilterList.as_view(),
|
||||
name="assetfilters",
|
||||
),
|
||||
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
||||
|
||||
Reference in New Issue
Block a user