2021-04-29 21:17:54 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class UserPreferences < Grape::Entity
|
2021-09-04 01:27:46 +05:30
|
|
|
expose :id, :user_id, :view_diffs_file_by_file, :show_whitespace_in_diffs
|
2021-04-29 21:17:54 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|