mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 15:51:08 -05:00
Add version control system functionality with branch management, history tracking, and merge operations
This commit is contained in:
22
history_tracking/urls.py
Normal file
22
history_tracking/urls.py
Normal file
@@ -0,0 +1,22 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = 'history'
|
||||
|
||||
urlpatterns = [
|
||||
# Main VCS interface
|
||||
path('vcs/', views.VersionControlPanel.as_view(), name='vcs-panel'),
|
||||
|
||||
# Branch operations
|
||||
path('vcs/branches/', views.BranchListView.as_view(), name='branch-list'),
|
||||
path('vcs/branches/create/', views.BranchCreateView.as_view(), name='branch-create'),
|
||||
|
||||
# History views
|
||||
path('vcs/history/', views.HistoryView.as_view(), name='history-view'),
|
||||
|
||||
# Merge operations
|
||||
path('vcs/merge/', views.MergeView.as_view(), name='merge-view'),
|
||||
|
||||
# Tag operations
|
||||
path('vcs/tags/create/', views.TagCreateView.as_view(), name='tag-create'),
|
||||
]
|
||||
Reference in New Issue
Block a user