Files
danbooru/app/controllers/post_events_controller.rb
2015-07-28 15:45:01 -07:00

8 lines
159 B
Ruby

class PostEventsController < ApplicationController
before_filter :member_only
def index
@events = PostEvent.find_for_post(params[:post_id])
end
end