mberlanda/cheidelacoriera

View on GitHub
app/decorators/team_decorator.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

class TeamDecorator < ApplicationDecorator
  def datatable_index
    [
      link_to(object.name, team_url(object.id)),
      object.country,
      object.url,
      object.image_url,
      object.description
    ]
  end
end