Add API endpoints for workflow approvals

This commit is contained in:
beeankha
2019-07-03 14:46:59 -04:00
committed by Ryan Petrello
parent 72a65f74fd
commit 9024a514a6
11 changed files with 304 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-07-01 19:41
# Generated by Django 1.11.20 on 2019-07-03 14:38
from __future__ import unicode_literals
from django.db import migrations, models
@@ -33,4 +33,9 @@ class Migration(migrations.Migration):
},
bases=('main.unifiedjobtemplate',),
),
migrations.AddField(
model_name='workflowapproval',
name='workflow_approval_template',
field=models.ForeignKey(blank=True, default=None, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='approvals', to='main.WorkflowApprovalTemplate'),
),
]