mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
10 lines
155 B
Ruby
10 lines
155 B
Ruby
module Spree
|
|
module Admin
|
|
class CountriesController < ResourceController
|
|
def collection
|
|
super.order(:name)
|
|
end
|
|
end
|
|
end
|
|
end
|