Create a fake MediaEntry.media_data for sql
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Sat, 18 Feb 2012 21:20:32 +0000 (22:20 +0100)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Fri, 2 Mar 2012 23:16:44 +0000 (00:16 +0100)
So that the SQL backend is more useable, let the MediaEntry
have a faked media_data.
It's extremely fake: The returned dict is always a new one.
So any stored info is even lost!

mediagoblin/db/sql/models.py

index b52eac762dffb0eb362afe4314742d56a71a6e62..8ae32c63617fd95c740530bb3a32eecd7cc682f2 100644 (file)
@@ -167,6 +167,11 @@ class MediaEntry(Base, MediaEntryMixin):
         if media is not None:
             return media.url_for_self(urlgen)
 
+    @property
+    def media_data(self):
+        # TODO: Replace with proper code to read the correct table
+        return {}
+
 
 class MediaFile(Base):
     """