2018-07-19 14:43:13 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-07 08:00:53 -05:00
|
|
|
class LfsFileLockEntity < Grape::Entity
|
|
|
|
root 'locks', 'lock'
|
|
|
|
|
|
|
|
expose :path
|
|
|
|
expose(:id) { |entity| entity.id.to_s }
|
|
|
|
expose(:created_at, as: :locked_at) { |entity| entity.created_at.to_s(:iso8601) }
|
|
|
|
|
|
|
|
expose :owner do
|
|
|
|
expose(:name) { |entity| entity.user&.name }
|
|
|
|
end
|
|
|
|
end
|