commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/284e273fcae0/ Changeset: 284e273fcae0 User: Kyle Ellrott Date: 2013-10-29 20:07:45 Summary: Adding parent_library_id field to the LibraryDataset 'to_dict' call. Affected #: 1 file diff -r 6e8e8eaa88b26cf04ee52dd907c2c5afd71e06ae -r 284e273fcae00a9d605f0b35c73351d1de5c179f lib/galaxy/model/__init__.py --- a/lib/galaxy/model/__init__.py +++ b/lib/galaxy/model/__init__.py @@ -2033,6 +2033,7 @@ rval = dict( id = self.id, ldda_id = ldda.id, + parent_library_id = self.folder.parent_library.id, folder_id = self.folder_id, model_class = self.__class__.__name__, name = ldda.name, https://bitbucket.org/galaxy/galaxy-central/commits/2b2f0c607cfb/ Changeset: 2b2f0c607cfb User: dannon Date: 2013-11-05 22:07:05 Summary: Merged in kellrott/galaxy-central (pull request #245) Adding parent_library_id field to the LibraryDataset 'to_dict' call. Affected #: 1 file diff -r 59970693121175aacf9d9ca75f012104d7e5db08 -r 2b2f0c607cfb7753ca423676a93355f569b6ec1b lib/galaxy/model/__init__.py --- a/lib/galaxy/model/__init__.py +++ b/lib/galaxy/model/__init__.py @@ -2042,6 +2042,7 @@ rval = dict( id = self.id, ldda_id = ldda.id, + parent_library_id = self.folder.parent_library.id, folder_id = self.folder_id, model_class = self.__class__.__name__, name = ldda.name, Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org