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
In #7113 access to TransformationClient.getTransformation was restricted however access to TransformationClient.getTransformations was not.
Though in the actual method, it seems at a glance that getTransformation is just an wrapper around getTransformations so it's not clear to me why they wouldn't be treated the same way:
The WebApp also now silently fails due to accessing these methods as well as getTransformationStats, getTransformationFilesCount and potentially more.
I guess more importantly the original PR stated:
we decided that we'll be fine with people seeing other transformations - just not modifying them.
but in practice the change restricts large parts of the "seeing other transfromations". This is somewhat pressing as LHCbDIRAC extensively relies on users having read access to all transformations.
The text was updated successfully, but these errors were encountered:
In #7113 access to
TransformationClient.getTransformation
was restricted however access toTransformationClient.getTransformations
was not.Though in the actual method, it seems at a glance that
getTransformation
is just an wrapper aroundgetTransformations
so it's not clear to me why they wouldn't be treated the same way:DIRAC/src/DIRAC/TransformationSystem/DB/TransformationDB.py
Lines 318 to 327 in df6a89f
It's the same for
getTransformationParameters
.The WebApp also now silently fails due to accessing these methods as well as
getTransformationStats
,getTransformationFilesCount
and potentially more.I guess more importantly the original PR stated:
but in practice the change restricts large parts of the "seeing other transfromations". This is somewhat pressing as LHCbDIRAC extensively relies on users having read access to all transformations.
The text was updated successfully, but these errors were encountered: