Skip to content

Commit

Permalink
Remove develop branch for simplicity (#23)
Browse files Browse the repository at this point in the history
* Remove develop branch for simplicity

* fmt
  • Loading branch information
DDuarte authored Jul 16, 2024
1 parent 9610a86 commit d9abae7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ name: tests
on:
pull_request:
branches:
- develop
- main

jobs:
Expand Down
5 changes: 3 additions & 2 deletions testapp/testapp/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""

from django.contrib import admin
from django.urls import path, include

urlpatterns = [
path('admin/', admin.site.urls),
path('api/notify/', include(('notifications.urls', 'notifications'))),
path("admin/", admin.site.urls),
path("api/notify/", include(("notifications.urls", "notifications"))),
]

0 comments on commit d9abae7

Please sign in to comment.