summaryrefslogtreecommitdiff
path: root/app/serializers/commit_entity.rb
blob: ae53de0c75063221791579f16b987184b5911d74 (plain)
1
2
3
4
5
6
7
8
9
10
class CommitEntity < API::Entities::RepoCommit
  include RequestAwareEntity

  expose :commit_url do |commit|
    @urls.namespace_project_tree_url(
      @request.project.namespace,
      @request.project,
      id: commit.id)
  end
end