forked from 00dani/lemoncurry
Switch from database-persisted auth codes to stateless JSON Web Tokens :)
This commit is contained in:
parent
41d490ea80
commit
1c09be1b1c
6 changed files with 72 additions and 56 deletions
18
lemonauth/migrations/0002_delete_indieauthcode.py
Normal file
18
lemonauth/migrations/0002_delete_indieauthcode.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.7 on 2017-11-02 05:35
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('lemonauth', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name='IndieAuthCode',
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue