about summary refs log tree commit diff
path: root/app/controllers/atom_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/atom_controller.rb')
-rw-r--r--app/controllers/atom_controller.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/controllers/atom_controller.rb b/app/controllers/atom_controller.rb
new file mode 100644
index 000000000..e0b45c580
--- /dev/null
+++ b/app/controllers/atom_controller.rb
@@ -0,0 +1,14 @@
+class AtomController < ApplicationController
+  before_filter :set_format
+
+  def user_stream
+    @account = Account.find_by!(id: params[:id], domain: nil)
+  end
+
+  private
+
+  def set_format
+    request.format = 'xml'
+    response.headers['Content-Type'] = 'application/atom+xml'
+  end
+end