mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-05 22:26:07 +00:00
12 lines
163 B
Ruby
12 lines
163 B
Ruby
module Spree
|
|
module Admin
|
|
class CountriesController < ResourceController
|
|
|
|
def collection
|
|
super.order(:name)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|