svthalia/concrexit

View on GitHub
website/shortlinks/urls.py

Summary

Maintainability
A
45 mins
Test Coverage
"""The routes defined by this package."""
from django.urls import path

from .views import ShortLinkView

app_name = "shortlink"

urlpatterns = [
    path("<slug:slug>/", ShortLinkView.as_view(), name="url"),
]