joatuapp/joatu-v2

View on GitHub
app/controllers/events_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class EventsController < ApplicationController

  respond_to :html

  def show
    @event = Event.find(params[:id])
    authorize @event
    respond_with @event
  end
end