You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Show task bounding boxes in compound annotations (#8735)
### URL of deployed dev instance (used for testing):
- https://compoundincludetaskbboxes.webknossos.xyz
### Steps to test:
- Create task with bbox
- Trace it + finish
- View compound. Bbox should be in user bounding boxes
### TODOs:
- [x] No more unique-i-fying. Leave in all instances’ boxes
- [x] Add both task id and annotation id to box name
### Issues:
- fixes#7835
------
- [x] Added changelog entry (create a `$PR_NUMBER.md` file in
`unreleased_changes` or use `./tools/create-changelog-entry.py`)
- [x] Considered [common edge
cases](../blob/master/.github/common_edge_cases.md)
q"""((SELECT _team FROM webknossos.projects p WHERE _project = p._id) IN (SELECT _team FROM webknossos.user_team_roles WHERE _user = $requestingUserId)
73
77
or ((SELECT _organization FROM webknossos.teams WHERE webknossos.teams._id = (SELECT _team FROM webknossos.projects p WHERE _project = p._id))
@@ -282,6 +286,22 @@ class TaskDAO @Inject()(sqlClient: SqlClient)(implicit ec: ExecutionContext)
282
286
q"SELECT domain FROM webknossos.experienceDomains WHERE _organization = $organizationId".as[String])
Copy file name to clipboardExpand all lines: webknossos-tracingstore/app/com/scalableminds/webknossos/tracingstore/controllers/SkeletonTracingController.scala
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,9 @@ class SkeletonTracingController @Inject()(skeletonTracingService: SkeletonTracin
Copy file name to clipboardExpand all lines: webknossos-tracingstore/app/com/scalableminds/webknossos/tracingstore/controllers/TSAnnotationController.scala
0 commit comments