debian-mirror-gitlab/elasticsearch-model/spec/support/app/author.rb
2020-03-09 13:42:32 +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