You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class DocumentsYearsComponent < BaseComponent |
|
attr_reader :years, :opts |
|
|
|
def initialize(current_user:, years:, opts: {}) |
|
@years = years |
|
@opts = opts |
|
end |
|
|
|
def render? |
|
years.reject(&:blank?).present? |
|
end |
|
end |