mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +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
|