Add /whoami view for logged-in user

This commit is contained in:
Seamus Johnston 2022-09-13 09:15:40 -05:00 committed by Neil Martinsen-Burrell
parent cbf39aa3c3
commit f147f8c2ab
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
16 changed files with 375 additions and 167 deletions

View file

@ -7,7 +7,7 @@ For more information see:
from django.contrib import admin
from django.urls import include, path
from registrar.views import health, index
from registrar.views import health, index, whoami
urlpatterns = [
path("", index.index, name="home"),