summaryrefslogtreecommitdiff
path: root/app/controllers/sparkles_controller.rb
blob: 6d1c248d0be03d3ad6af1e4b1b549fa47e00049b (plain)
1
2
3
4
5
6
7
8
class SparklesController < ApplicationController
  def index
    @sparkles = Sparkle.recent.limit(50)
  end

  def create
  end
end