from django.urls import path
from .views import ReviewListByLocationView, UnRepliedReviewList, ReviewListView

urlpatterns = [
    path('', UnRepliedReviewList.as_view(), name='un-replied-review'),
    path('list/', ReviewListView.as_view(), name='review-list'),
    path('list/<location_id>/', ReviewListByLocationView.as_view(), name='review-list-by-location'),
]