2018-01-06 03:06:07 +01:00
|
|
|
"""brutaldon URL Configuration
|
|
|
|
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
|
|
https://docs.djangoproject.com/en/2.0/topics/http/urls/
|
|
|
|
Examples:
|
|
|
|
Function views
|
|
|
|
1. Add an import: from my_app import views
|
|
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
|
|
Class-based views
|
|
|
|
1. Add an import: from other_app.views import Home
|
|
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
|
|
Including another URLconf
|
|
|
|
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
|
2018-04-24 00:16:22 +02:00
|
|
|
from brutaldon import views
|
2018-01-06 03:06:07 +01:00
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path('admin/', admin.site.urls),
|
2018-05-26 19:28:13 +02:00
|
|
|
path('about', views.about, name='about'),
|
|
|
|
path('privacy', views.privacy, name='privacy'),
|
2019-01-28 03:12:12 +01:00
|
|
|
path('home/next/<next>', views.home, name='home_next'),
|
|
|
|
path('home/prev/<prev>', views.home, name='home_prev'),
|
2018-04-25 01:20:22 +02:00
|
|
|
path('home', views.home, name='home'),
|
2018-04-24 00:16:22 +02:00
|
|
|
path('login', views.login, name="login"),
|
2018-05-15 15:52:07 +02:00
|
|
|
path('oldlogin', views.old_login, name="oldlogin"),
|
2018-04-25 01:20:22 +02:00
|
|
|
path('logout', views.logout, name='logout'),
|
2018-05-14 21:35:10 +02:00
|
|
|
path('oauth_callback', views.oauth_callback, name="oauth_callback"),
|
2018-04-25 01:20:22 +02:00
|
|
|
path('error', views.error, name='error'),
|
|
|
|
path('local', views.local, name='local'),
|
2019-01-28 03:12:12 +01:00
|
|
|
path('local/next/<next>', views.local, name='local_next'),
|
|
|
|
path('local/prev/<prev>', views.local, name='local_prev'),
|
2018-04-25 01:20:22 +02:00
|
|
|
path('fed', views.fed, name='fed'),
|
2019-01-28 03:12:12 +01:00
|
|
|
path('fed/next/<next>', views.fed, name='fed_next'),
|
|
|
|
path('fed/prev/<prev>', views.fed, name='fed_prev'),
|
2018-06-24 20:19:35 +02:00
|
|
|
path('note', views.note, name='note'),
|
2019-01-28 03:12:12 +01:00
|
|
|
path('note/next<next>', views.note, name='note_next'),
|
|
|
|
path('note/prev/<prev>', views.note, name='note_prev'),
|
2018-09-08 15:09:04 +02:00
|
|
|
path('notes_count', views.notes_count, name='notes_count'),
|
2019-01-18 03:02:23 +01:00
|
|
|
path('user_search', views.user_search, name='user_search'),
|
2018-04-25 22:45:46 +02:00
|
|
|
path('settings', views.settings, name='settings'),
|
2019-01-28 03:12:12 +01:00
|
|
|
path('thread/<id>', views.thread, name='thread'),
|
2018-05-07 01:46:51 +02:00
|
|
|
path('tags/<tag>', views.tag, name='tag'),
|
2018-10-26 20:00:43 +02:00
|
|
|
path('user/', views.home, name='user_bad'),
|
2018-05-09 03:47:17 +02:00
|
|
|
path('user/<username>', views.user, name='user'),
|
2018-06-24 23:16:28 +02:00
|
|
|
path('user/<username>/next/<int:next>', views.user, name='user_next'),
|
|
|
|
path('user/<username>/prev/<int:prev>', views.user, name='user_prev'),
|
2018-06-12 01:19:22 +02:00
|
|
|
path('toot/<mention>', views.toot, name='toot'),
|
2018-04-30 14:58:10 +02:00
|
|
|
path('toot', views.toot, name="toot"),
|
2019-01-28 03:12:12 +01:00
|
|
|
path('reply/<id>', views.reply, name='reply'),
|
|
|
|
path('redraft/<id>', views.redraft, name='redraft'),
|
|
|
|
path('fav/<id>', views.fav, name='fav'),
|
|
|
|
path('boost/<id>', views.boost, name='boost'),
|
|
|
|
path('delete/<id>', views.delete, name='delete'),
|
|
|
|
path('follow/<id>', views.follow, name='follow'),
|
|
|
|
path('block/<id>', views.block, name='block'),
|
|
|
|
path('mute/<id>', views.mute, name='mute'),
|
2018-06-06 00:36:44 +02:00
|
|
|
path('search', views.search, name='search'),
|
|
|
|
path('search_results', views.search_results, name='search_results'),
|
2018-08-10 01:39:23 +02:00
|
|
|
path('emoji', views.emoji_reference, name='emoji'),
|
2019-02-15 04:03:13 +01:00
|
|
|
path('filters/list', views.list_filters, name='list_filters'),
|
|
|
|
path('filters/create', views.create_filter, name='create_filter'),
|
2019-02-15 23:10:26 +01:00
|
|
|
path('filters/delete/<id>', views.delete_filter, name='delete_filter'),
|
2018-09-19 16:19:34 +02:00
|
|
|
path('', views.home, name=''),
|
2018-01-06 03:06:07 +01:00
|
|
|
]
|