debian-mirror-gitlab/app/serializers/commit_entity.rb
2018-03-17 18:26:18 +05:30

18 lines
393 B
Ruby

class CommitEntity < API::Entities::Commit
include RequestAwareEntity
expose :author, using: UserEntity
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