gitlabhq/lib/api/entities.rb
2012-06-28 03:43:41 -07:00

9 lines
209 B
Ruby

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