8 lines
176 B
Ruby
8 lines
176 B
Ruby
class SDGManagement::LocalTargetsController < SDGManagement::BaseController
|
|
LocalTarget = ::SDG::LocalTarget
|
|
|
|
def index
|
|
@local_targets = LocalTarget.all.sort
|
|
end
|
|
end
|