mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
19 lines
350 B
Ruby
19 lines
350 B
Ruby
class AtomController < ApplicationController
|
|
before_filter :set_format
|
|
|
|
def user_stream
|
|
@account = Account.find_by!(id: params[:id], domain: nil)
|
|
end
|
|
|
|
def entry
|
|
@entry = StreamEntry.find(params[:id])
|
|
end
|
|
|
|
private
|
|
|
|
def set_format
|
|
request.format = 'xml'
|
|
response.headers['Content-Type'] = 'application/atom+xml'
|
|
end
|
|
end
|