11 lines
139 B
Ruby
11 lines
139 B
Ruby
class ArtistLink < ActiveRecord::Base
|
|
belongs_to :artist
|
|
|
|
def serialize
|
|
{
|
|
service: service,
|
|
url: url
|
|
}
|
|
end
|
|
end
|