Custom Query (2152 matches)
Results (601 - 603 of 2152)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1595 | wontfix | Editing of a Group leads to recording a change against all associated datasets | kindly | rgrp |
Description |
Or at least it appears that way from revision log which displays all Group datasets against the changelog, see http://thedatahub.org/revision/4cdeeb42-3281-4f53-a29d-c694e1fd9217 -- not apparent from that page but see my user page: http://thedatahub.org/user/rufuspollock This may turn out to be a UX bug rather than a real bug ... Assigning to kindly for review and comment. |
|||
#1775 | fixed | Enable adding many tags at once to controlled vocabularies via API | seanh | seanh |
Description |
We already have API calls for adding one tag or removing one tag at a time to/from a vocab. Want more convenient ways to add or remove many in one call, or just pass in a list of tags to completely replace a vocab's current list.
|
|||
#648 | fixed | Enable lock-down of package creation | pudo | |
Description |
is_authorized(user, Action.Create, model.Package) -> Doing this will put 'Package' in the context field of the user_object_role table. This will trigger SQLAlchemy to attempt a join towards PackageRole? in all queries. Since for class-level role assignments there never is a PackageRole? join table entry, this will never return any results.
is_authorized(user, Action.Package_Create, model.System()) is_authorized(user, Action.Group_Create, model.System()) [Separating Package and Group roles may be useful going forward: PackageEditor?, GroupEditor? etc]
|