aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/db/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'mediagoblin/db/models.py')
-rw-r--r--mediagoblin/db/models.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py
index 925f0d24..ca4efdd1 100644
--- a/mediagoblin/db/models.py
+++ b/mediagoblin/db/models.py
@@ -236,11 +236,6 @@ class NonceTimestamp(Base):
nonce = Column(Unicode, nullable=False, primary_key=True)
timestamp = Column(DateTime, nullable=False, primary_key=True)
-
-def create_uuid():
- """ Creates a new uuid which is suitable for use in a URL """
- return base64.urlsafe_b64encode(uuid.uuid4().bytes).strip("=")
-
class MediaEntry(Base, MediaEntryMixin):
"""
TODO: Consider fetching the media_files using join
@@ -445,7 +440,7 @@ class MediaEntry(Base, MediaEntryMixin):
id = request.urlgen(
"mediagoblin.federation.object",
objectType=self.objectType,
- uuid=self.uuid,
+ uuid=self.slug,
qualified=True
)