Custom Query (1173 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (133 - 135 of 1173)

Ticket Resolution Summary Owner Reporter
#5433 fixed Typo in decorator text returned to API client ayleph
Description
diff --git a/mediagoblin/decorators.py b/mediagoblin/decorators.py
index a2c49bc..daeddb3 100644
--- a/mediagoblin/decorators.py
+++ b/mediagoblin/decorators.py
@@ -416,7 +416,7 @@ def oauth_required(controller):
                 )
 
         if not valid:
-            error = "Invalid oauth prarameter."
+            error = "Invalid oauth parameter."
             return json_response({"error": error}, status=400)
 
         # Fill user if not already
#5432 fixed Comment report link doesn't go anywhere ayleph
Description

The "Report" link under comments goes to a 404 page. I'm not sure if it used to actually go somewhere.

#5431 fixed Typo in models ayleph
Description

There's a typo in mediagoblin/db/models.py which will prevent code from executing as expected.

diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py
index 97dc91d..3f36f22 100644
--- a/mediagoblin/db/models.py
+++ b/mediagoblin/db/models.py
@@ -607,7 +607,7 @@ class MediaEntry(Base, MediaEntryMixin, CommentingMixin):
         if ascending:
             query = query.order_by(Comment.added.asc())
         else:
-            qury = query.order_by(Comment.added.desc())
+            query = query.order_by(Comment.added.desc())

         return FakeCursor(query, lambda c:c.comment())
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.