Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_action_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e72892d58497fe2a85d35bd0e8ffb53db022adc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class BuildActionEntity < Grape::Entity
  include RequestAwareEntity

  expose :name do |build|
    build.name.humanize
  end

  expose :path do |build|
    play_namespace_project_build_path(
      build.project.namespace,
      build.project,
      build)
  end
end