Make filestorage available to code that only imports storage.
[mediagoblin.git] / mediagoblin / listings / routing.py
index 90580601cbb56ccecf85141a3711f9fd2f2c2269..d228a7273b3847da124641c62f4f6156ba8271b8 100644 (file)
@@ -1,5 +1,5 @@
 # GNU MediaGoblin -- federated, autonomous media hosting
-# Copyright (C) 2011 Free Software Foundation, Inc
+# Copyright (C) 2011, 2012 MediaGoblin contributors.  See AUTHORS.
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as published by
@@ -21,5 +21,7 @@ tag_routes = [
     # Route('mediagoblin.listings.tags_home', "/",
     #    controller="mediagoblin.listings.views:tags_home"),
     Route('mediagoblin.listings.tags_listing', "/{tag}/",
-        controller="mediagoblin.listings.views:tag_listing")]
-    
+        controller="mediagoblin.listings.views:tag_listing"),
+    Route('mediagoblin.listings.tag_atom_feed', "/{tag}/atom/",
+        controller="mediagoblin.listings.views:tag_atom_feed"),
+    ]