diff options
author | Jerome Dalbert <jerome@rentify.com> | 2014-01-18 19:07:00 +0000 |
---|---|---|
committer | Jerome Dalbert <jerome@rentify.com> | 2014-01-18 19:15:10 +0000 |
commit | 2e3f250d4516c92adce5511747419d7f1fe04b97 (patch) | |
tree | bdf7a0dc744a55a3b96a10131baebd996e5b9d79 /lib/api/entities.rb | |
parent | dba982403b7b894d2096ea61b89a247060eefe57 (diff) | |
download | gitlab-ce-2e3f250d4516c92adce5511747419d7f1fe04b97.tar.gz |
Add website url to user
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index 8d2f38c4daa..76a56a0f0a6 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -1,7 +1,7 @@ module API module Entities class User < Grape::Entity - expose :id, :username, :email, :name, :bio, :skype, :linkedin, :twitter, + expose :id, :username, :email, :name, :bio, :skype, :linkedin, :twitter, :website_url, :theme_id, :color_scheme_id, :state, :created_at, :extern_uid, :provider expose :is_admin?, as: :is_admin expose :can_create_group?, as: :can_create_group |