6 lines
127 B
Ruby
6 lines
127 B
Ruby
class SDGManagement::GoalsController < SDGManagement::BaseController
|
|
def index
|
|
@goals = SDG::Goal.order(:code)
|
|
end
|
|
end
|