vinc/pi.ctu.re

View on GitHub
app/controllers/explore_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ExploreController < PicturesController
  def index
    super

    respond_to do |format|
      format.html # index.html.erb
      format.js { render template: "pictures/index" }
    end
  end
end