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