debian-mirror-gitlab/lib/api/entities/user_preferences.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
233 B
Ruby
Raw Normal View History

2021-04-29 21:17:54 +05:30
# frozen_string_literal: true
module API
module Entities
class UserPreferences < Grape::Entity
2023-07-09 08:55:56 +05:30
expose :id, :user_id, :view_diffs_file_by_file, :show_whitespace_in_diffs, :pass_user_identities_to_ci_jwt
2021-04-29 21:17:54 +05:30
end
end
end