8 lines
174 B
Ruby
8 lines
174 B
Ruby
class SDGManagement::TargetsController < SDGManagement::BaseController
|
|
load_and_authorize_resource class: "SDG::Target"
|
|
|
|
def index
|
|
@targets = @targets.sort
|
|
end
|
|
end
|