Permalink
Loading
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
65 additions
and 54 deletions.
- +1 −1 lib/galaxy/__init__.py
- +1 −1 lib/galaxy/managers/annotatable.py
- +1 −3 lib/galaxy/managers/base.py
- +0 −3 lib/galaxy/managers/cloudauthzs.py
- +2 −2 lib/galaxy/managers/containers.py
- +2 −1 lib/galaxy/managers/datasets.py
- +0 −1 lib/galaxy/managers/history_contents.py
- +3 −2 lib/galaxy/managers/ratable.py
- +1 −1 lib/galaxy/managers/rbac_secured.py
- +3 −2 lib/galaxy/managers/sharable.py
- +2 −2 lib/galaxy/managers/taggable.py
- +10 −5 lib/galaxy/model/__init__.py
- +7 −7 lib/galaxy/model/mapping.py
- +1 −1 lib/galaxy/model/tool_shed_install/__init__.py
- +1 −1 lib/galaxy/web/buildapp.py
- +3 −3 lib/galaxy/web/framework/helpers/grids.py
- +1 −1 lib/galaxy/web/legacy_framework/grids.py
- +18 −11 lib/galaxy/web_stack/handlers.py
- +2 −1 lib/galaxy/webapps/galaxy/api/__init__.py
- +1 −1 lib/galaxy/webapps/galaxy/api/jobs.py
- +2 −1 lib/galaxy_test/base/testcase.py
- +1 −1 lib/galaxy_test/selenium/framework.py
- +2 −2 lib/tool_shed/webapp/model/__init__.py
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -3,4 +3,4 @@ | ||
| """ | ||
|
|
||
| from pkgutil import extend_path | ||
| __path__ = extend_path(__path__, __name__) # type: ignore | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -20,9 +20,6 @@ class CloudAuthzManager(sharable.SharableModelManager): | ||
| model_class = model.CloudAuthz | ||
| foreign_key_name = 'cloudauthz' | ||
|
|
||
|
|
||
| class CloudAuthzsSerializer(base.ModelSerializer): | ||
| """ | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -21,7 +21,7 @@ class RBACPermission: | ||
| (Libraries, Datasets). | ||
| """ | ||
|
|
||
| permissions_class: type | ||
| permission_failed_error_class = RBACPermissionFailedException | ||
|
|
||
| def __init__(self, app): | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.