7 lines
205 B
Ruby
7 lines
205 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DiffViewerEntity < Grape::Entity
|
|
# Partial name refers directly to a Rails feature, let's avoid
|
|
# using this on the frontend.
|
|
expose :partial_name, as: :name
|
|
end
|