Add API hook for logging risk assessment completion (#341)

This commit is contained in:
David Taylor
2019-07-28 23:08:18 +01:00
committed by GitHub
parent faa4573f6d
commit 35997aa882
7 changed files with 67 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 2.0.5 on 2019-07-28 21:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('RIGS', '0033_auto_20180325_0016'),
]
operations = [
migrations.AddField(
model_name='event',
name='risk_assessment_edit_url',
field=models.CharField(blank=True, max_length=255, null=True),
),
]