Basic app structure
This commit is contained in:
commit
6b02d779fd
11 changed files with 351 additions and 0 deletions
11
fedireads/views.py
Normal file
11
fedireads/views.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
from django.contrib.auth.decorators import login_required
|
||||
|
||||
@login_required
|
||||
def account_page(request):
|
||||
return 'hi'
|
||||
|
||||
def webfinger(request):
|
||||
return 'hello'
|
||||
|
||||
def api(request):
|
||||
return 'hey'
|
Loading…
Add table
Add a link
Reference in a new issue