* /artist_commentaries * /note_versions * /post_appeals * /post_flags * /posts/1/events * /super_voters
9 lines
188 B
Ruby
9 lines
188 B
Ruby
class PostEventsController < ApplicationController
|
|
respond_to :html, :xml, :json
|
|
|
|
def index
|
|
@events = PostEvent.find_for_post(params[:post_id])
|
|
respond_with(@events)
|
|
end
|
|
end
|