mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-29 12:00:32 +00:00
11 lines
241 B
Ruby
11 lines
241 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module Entities
|
|
class UserPreferences < Grape::Entity
|
|
expose :id, :user_id, :view_diffs_file_by_file,
|
|
:show_whitespace_in_diffs, :pass_user_identities_to_ci_jwt
|
|
end
|
|
end
|
|
end
|