mberlanda/cheidelacoriera

View on GitHub
app/decorators/album_decorator.rb

Summary

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

class AlbumDecorator < ApplicationDecorator
  def datatable_index
    [
      link_to(object.title, album_url(object.id)),
      object.url,
      object.event.to_s
    ]
  end
end