app/controllers/api/events_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Api
  class EventsController < ApplicationController
    def participants
      @event = Event.find(params[:id])
      @users = @event.ordered_users.recent(10)
    end
  end
end