-
Notifications
You must be signed in to change notification settings - Fork 37
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
Remove area and change name from InspectionArea to InspectionGroup #2003
Conversation
🔔 Changes in database folder detected 🔔 |
.Entity<InspectionArea>() | ||
.HasOne(d => d.Plant) | ||
.Entity<InspectionGroup>() | ||
.HasOne(d => d.Installation) |
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.
d (for deck) should probably be changed as well. Have notices a few of those in frontend as well
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.
It could be good to split up the commits so that files that are edited and renamed don't appear to be deleted. I understand that this is just a draft though.
7c22cf6
to
7ae9fc7
Compare
if (existingInspectionGroup != null) | ||
{ | ||
throw new InspectionGroupExistsException( | ||
$"Inspection are with name {newInspectionGroupQuery.Name} already exists" |
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.
$"Inspection are with name {newInspectionGroupQuery.Name} already exists" | |
$"Inspection group with name {newInspectionGroupQuery.Name} already exists" |
Ready for review checklist: