main
1class SparklesController < ApplicationController
2  def index
3    @sparkles = Sparkle.recent.limit(50)
4  end
5
6  def create
7  end
8end