MiraitSystems/enju_trunk

View on GitHub
app/controllers/opac_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class OpacController < ApplicationController
  layout "opac"

  def index
    @events = Event.order('start_at DESC').limit(5)
  end

  def search
  end

  def manifestations_index
  end

end