Corban-Lee Jones 20e713d8df bot permissions view (for later)
will use to check whether the bot has permissions in any given server
2024-09-26 16:47:15 +01:00

13 lines
429 B
Python

# -*- encoding: utf-8 -*-
from django.urls import path
from django.contrib.auth.decorators import login_required
from .views import IndexView, GuildsView, CheckBotPermissionView
urlpatterns = [
path("", login_required(IndexView.as_view()), name="index"),
path("generate-servers/", GuildsView.as_view(), name="generate-servers"),
path("bot-permissions/", CheckBotPermissionView.as_view(), name="bot-permissions")
]