Files
ch420/app/controllers/admin/supporters_controller.rb
T

8 lines
153 B
Ruby
Raw Normal View History

2016-04-21 16:53:30 +02:00
module Admin
class SupportersController < Admin::ApplicationController
def index
@supporters = Supporter.desc(:created_at)
end
end
end