Skip to content

Commit 888a39b

Browse files
committed
Added a migration for the additional API endpoint for PersonalApiKey.
- Legacy-Id: 15571
1 parent c51e245 commit 888a39b

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.16 on 2018-10-14 14:48
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('person', '0007_auto_20180929_1303'),
12+
]
13+
14+
operations = [
15+
migrations.AlterField(
16+
model_name='personalapikey',
17+
name='endpoint',
18+
field=models.CharField(choices=[(b'/api/iesg/position', b'/api/iesg/position'), (b'/api/v2/person/person', b'/api/v2/person/person'), (b'/api/meeting/session/video/url', b'/api/meeting/session/video/url')], max_length=128),
19+
),
20+
]

0 commit comments

Comments
 (0)