debian-mirror-gitlab/elasticsearch-rails/elasticsearch-model/spec/support/app/author.rb
2021-03-05 16:19:46 +05:30

9 lines
182 B
Ruby

class Author < ActiveRecord::Base
has_many :authorships
after_update { self.authorships.each(&:touch) }
def full_name
[first_name, last_name].compact.join(' ')
end
end