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
Looks like createExplorational sets the organizationName field using the user orga, not the dataset orga, as it is described in the comment in the proto files. This creates problems like #6521 – we should consider how to deal with this disparity
The text was updated successfully, but these errors were encountered:
annotations for datasets of foreign orgas can be found via
select a._id, uo.displayname as userOrg, dao.displayname as datasetOrg
from webknossos.annotations_ a
join webknossos.datasets_ d on a._dataset = d._id
join webknossos.users_ u on a._user = u._id
join webknossos.organizations_ uo on u._organization = uo._id
join webknossos.organizations_ dao on d._organization = dao._id
where u._organization != d._organization
Looks like createExplorational sets the organizationName field using the user orga, not the dataset orga, as it is described in the comment in the proto files. This creates problems like #6521 – we should consider how to deal with this disparity
The text was updated successfully, but these errors were encountered: