mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-25 18:58:19 +00:00
8 lines
195 B
Python
8 lines
195 B
Python
from django.db import models
|
|
from spa.models import BaseModel, UserProfile
|
|
|
|
|
|
class Session(BaseModel):
|
|
jwt_token = models.CharField(max_length=2048)
|
|
user = models.ForeignKey(UserProfile)
|