2021-04-02 17:09:22 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class UserPreferences < Grape::Entity
|
2021-05-27 02:10:47 -04:00
|
|
|
expose :id, :user_id, :view_diffs_file_by_file, :show_whitespace_in_diffs
|
2021-04-02 17:09:22 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|