You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/app/api/mobile/entities/user.rb

24 lines
399 B

module Mobile
module Entities
class User < Grape::Entity
expose :id
#头像
expose :img_url
#昵称
expose :nickname
#性别
expose :gender
#我的二维码
#工作单位
expose :work_unit
#邮箱地址
expose :mail
#地区
expose :location
#签名
expose :brief_introduction
end
end
end