Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar_network/model/routes.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar_network/model/routes.py')
-rw-r--r--sugar_network/model/routes.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/sugar_network/model/routes.py b/sugar_network/model/routes.py
index 17da118..6abb758 100644
--- a/sugar_network/model/routes.py
+++ b/sugar_network/model/routes.py
@@ -37,8 +37,10 @@ class VolumeRoutes(db.Routes):
impls, __ = implementations.find(context=context.guid,
not_layer='deleted', **request)
for impl in impls:
- version = impl.properties(
- ['guid', 'version', 'stability', 'license'])
+ version = impl.properties([
+ 'guid', 'ctime', 'layer', 'author', 'tags',
+ 'version', 'stability', 'license', 'notes',
+ ])
if context['dependencies']:
requires = version.setdefault('requires', {})
for i in context['dependencies']: