-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: 343 activity ng transmission non compression #2772
Feat: 343 activity ng transmission non compression #2772
Conversation
bce72e2
to
fbc6ca3
Compare
6934d91
to
af900e7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love the tests/uiSchema stuff! One small change needed to a source type & this is good to go.
@@ -0,0 +1,88 @@ | |||
{ | |||
"type": "object", | |||
"title": "Flaring stacks", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have two very similar source types in our db: "Flaring stacks" & "Flare stacks". I remember asking IRC about this and they said that they are pretty much the same thing, but there is a slight difference (or they are at least named differently in the regs).
"title": "Flaring stacks", | |
"title": "Flare stacks", |
True, | ||
), | ||
("5_blowdown_venting", "Blowdown venting", False, False), | ||
("6_flare_stacks", "Flaring stacks", True, True), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
("6_flare_stacks", "Flaring stacks", True, True), | |
("6_flare_stacks", "Flare stacks", True, True), |
ConfigurationElement.objects.bulk_create( | ||
ConfigurationElement( | ||
activity=ng_non_compression_activity, | ||
source_type=SourceType.objects.get(name="Flaring stacks"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
source_type=SourceType.objects.get(name="Flaring stacks"), | |
source_type=SourceType.objects.get(name="Flare stacks"), |
No description provided.