gitlabhq/lib/api/entities.rb

9 lines
209 B
Ruby
Raw Normal View History

2012-06-27 13:32:56 +02:00
module Gitlab
module Entities
class User < Grape::Entity
expose :id, :email, :name, :bio, :skype, :linkedin, :twitter,
:dark_scheme, :theme_id, :blocked, :created_at
end
end
end