-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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: LEAP-1720: distinguish annotations created using Bulk Labeling #6821
base: develop
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for label-studio-docs-new-theme ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for heartex-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #6821 +/- ##
========================================
Coverage 76.78% 76.78%
========================================
Files 171 171
Lines 14023 14024 +1
========================================
+ Hits 10767 10768 +1
Misses 3256 3256
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -684,6 +684,11 @@ class Annotation(AnnotationMixin, models.Model): | |||
default=None, | |||
null=True, | |||
) | |||
bulk_created = models.BooleanField( | |||
_('bulk created'), | |||
default=False, |
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.
This is unsafe, but db_default should be okay!
bulk_created
flag for annotation model