gitlab-org--gitlab-foss/app/serializers/commit_entity.rb

20 lines
424 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-10-05 08:48:05 +00:00
class CommitEntity < API::Entities::Commit
include RequestAwareEntity
expose :author, using: UserEntity
2016-11-04 09:16:30 +00:00
expose :author_gravatar_url do |commit|
GravatarService.new.execute(commit.author_email)
end
expose :commit_url do |commit|
project_commit_url(request.project, commit)
end
expose :commit_path do |commit|
project_commit_path(request.project, commit)
end
end