16 lines
252 B
Ruby
16 lines
252 B
Ruby
class Admin::SDG::Managers::IndexComponent < ApplicationComponent
|
|
include Header
|
|
|
|
attr_reader :users
|
|
|
|
def initialize(users)
|
|
@users = users
|
|
end
|
|
|
|
private
|
|
|
|
def title
|
|
SDG::Manager.model_name.human(count: 2).upcase_first
|
|
end
|
|
end
|