mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
* Started POM and assets test * FEAT: Adapt unit tests from RIGS to assets * CHORE: pep8... * Added Asset Create and Edit forms * Add non-cable asset creation test * CHORE: Frickin pep8... * Add cable asset creation test * Basic asset create validation testing * Asset edit tests are here A bit dodgy in places but par for the course for me :P * Add access level tests * Delete unused code Much less effort way to increase coverage stats :D * Add delete sample data test for completeness Chasing that sweet 100% coverage... * Add supplier list page + tests Also fix the supplier page not being ordered alphabetically * Helps if I add the migration... * Add supplier create/edit tests * Asset duplicate tests Also fixed some random bugs * Asset search tests * 404 tests and test that everything requires authentication * Test visibility of form errors And fix supplier form not displaying errors correctly! * Fix broken search test Co-authored-by: Matthew Smith <mattysmith22@googlemail.com>
45 lines
2.5 KiB
Python
45 lines
2.5 KiB
Python
from django.conf.urls import url
|
|
from django.urls import path
|
|
from assets import views, models
|
|
from RIGS import versioning
|
|
|
|
from django.contrib.auth.decorators import login_required
|
|
from django.views.decorators.clickjacking import xframe_options_exempt
|
|
from PyRIGS.decorators import has_oembed, permission_required_with_403
|
|
|
|
urlpatterns = [
|
|
path('', login_required(views.AssetList.as_view()), name='asset_index'),
|
|
path('asset/list/', login_required(views.AssetList.as_view()), name='asset_list'),
|
|
path('asset/id/<str:pk>/', has_oembed(oembed_view="asset_oembed")(views.AssetDetail.as_view()), name='asset_detail'),
|
|
path('asset/create/', permission_required_with_403('assets.add_asset')
|
|
(views.AssetCreate.as_view()), name='asset_create'),
|
|
path('asset/id/<str:pk>/edit/', permission_required_with_403('assets.change_asset')
|
|
(views.AssetEdit.as_view()), name='asset_update'),
|
|
path('asset/id/<str:pk>/duplicate/', permission_required_with_403('assets.add_asset')
|
|
(views.AssetDuplicate.as_view()), name='asset_duplicate'),
|
|
path('asset/id/<str:pk>/history/', permission_required_with_403('assets.view_asset')(views.AssetVersionHistory.as_view()),
|
|
name='asset_history', kwargs={'model': models.Asset}),
|
|
path('activity', permission_required_with_403('assets.view_asset')
|
|
(views.ActivityTable.as_view()), name='asset_activity_table'),
|
|
|
|
path('asset/search/', views.AssetSearch.as_view(), name='asset_search_json'),
|
|
path('asset/id/<str:pk>/embed/',
|
|
xframe_options_exempt(
|
|
login_required(login_url='/user/login/embed/')(views.AssetEmbed.as_view())),
|
|
name='asset_embed'),
|
|
path('asset/id/<str:pk>/oembed_json/',
|
|
views.AssetOembed.as_view(),
|
|
name='asset_oembed'),
|
|
|
|
path('supplier/list', views.SupplierList.as_view(), name='supplier_list'),
|
|
path('supplier/<int:pk>', views.SupplierDetail.as_view(), name='supplier_detail'),
|
|
path('supplier/create', permission_required_with_403('assets.add_supplier')
|
|
(views.SupplierCreate.as_view()), name='supplier_create'),
|
|
path('supplier/<int:pk>/edit', permission_required_with_403('assets.change_supplier')
|
|
(views.SupplierUpdate.as_view()), name='supplier_update'),
|
|
path('supplier/<int:pk>/history/', views.SupplierVersionHistory.as_view(),
|
|
name='supplier_history', kwargs={'model': models.Supplier}),
|
|
|
|
path('supplier/search/', views.SupplierSearch.as_view(), name='supplier_search_json'),
|
|
]
|