Move auth-related from 'kfet' app to 'kfet.auth'.

This commit is contained in:
Aurélien Delobelle 2017-09-13 01:57:31 +02:00
parent 7d16001ee5
commit bf61e41b50
19 changed files with 213 additions and 134 deletions

5
kfet/auth/models.py Normal file
View file

@ -0,0 +1,5 @@
from django.db import models
class GenericTeamToken(models.Model):
token = models.CharField(max_length=50, unique=True)