chinwagsocial/app/controllers/atom_controller.rb

15 lines
288 B
Ruby
Raw Normal View History

2016-02-23 02:00:20 +11:00
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