6 lines
133 B
Ruby
6 lines
133 B
Ruby
class Admin::SupportersController < Admin::ApplicationController
|
|
def index
|
|
@supporters = Supporter.desc(:created_at)
|
|
end
|
|
end
|