Skip to content

Commit abde8b8

Browse files
authored
Merge pull request #38 from buildingSMART/IVS-287-capture-request-channel
Capture request channel (IVS-287)
2 parents 37a0f60 + 224c596 commit abde8b8

File tree

3 files changed

+270
-172
lines changed

3 files changed

+270
-172
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.1.7 on 2025-07-23 04:46
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('ifc_validation_models', '0014_model_status_header_syntax_alter_validationtask_type'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='validationrequest',
15+
name='channel',
16+
field=models.CharField(choices=[('WEBUI', 'WebUi'), ('API', 'Api')], db_index=True, default='WEBUI', help_text='What channel was used to create this Validation Request.', max_length=10),
17+
),
18+
]

0 commit comments

Comments
 (0)