10 lines
148 B
Ruby
10 lines
148 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
class UserSafe < Grape::Entity
|
||
|
expose :id, :name, :username
|
||
|
end
|
||
|
end
|
||
|
end
|