1# frozen_string_literal: true
2
3module API
4  module Entities
5    class CommitStatus < Grape::Entity
6      expose :id, :sha, :ref, :status, :name, :target_url, :description,
7             :created_at, :started_at, :finished_at, :allow_failure, :coverage
8      expose :author, using: Entities::UserBasic
9    end
10  end
11end
12