core: add token Intents

This commit is contained in:
Jens Langhammer
2020-07-05 23:14:57 +02:00
parent 2402cfe29d
commit d5a3e09a98
2 changed files with 51 additions and 2 deletions

View File

@ -0,0 +1,24 @@
# Generated by Django 3.0.7 on 2020-07-05 21:11
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("passbook_core", "0004_auto_20200703_2213"),
]
operations = [
migrations.AddField(
model_name="token",
name="intent",
field=models.TextField(
choices=[
("verification", "Intent Verification"),
("api", "Intent Api"),
],
default="verification",
),
),
]