diff options
author | Go MAEDA <maeda@farend.jp> | 2018-09-20 14:54:38 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2018-09-20 14:54:38 +0000 |
commit | 0d29d3208d865e969af8cb268178f3d186d77551 (patch) | |
tree | 209bc9c06008866644d151ab6f4c0d7de2180ad4 /app | |
parent | e9d15d691b2c5f314d618156077ec3b7f20e5fa2 (diff) | |
download | redmine-0d29d3208d865e969af8cb268178f3d186d77551.tar.gz redmine-0d29d3208d865e969af8cb268178f3d186d77551.zip |
Expose the Admin flag on the users api to admin users (#29459).
Patch by Holger Just.
git-svn-id: http://svn.redmine.org/redmine/trunk@17496 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/users/index.api.rsb | 1 | ||||
-rw-r--r-- | app/views/users/show.api.rsb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/app/views/users/index.api.rsb b/app/views/users/index.api.rsb index 4265a4be4..23e38398e 100644 --- a/app/views/users/index.api.rsb +++ b/app/views/users/index.api.rsb @@ -3,6 +3,7 @@ api.array :users, api_meta(:total_count => @user_count, :offset => @offset, :lim api.user do api.id user.id api.login user.login + api.admin user.admin? api.firstname user.firstname api.lastname user.lastname api.mail user.mail diff --git a/app/views/users/show.api.rsb b/app/views/users/show.api.rsb index e4c49f9b8..d83ad22f6 100644 --- a/app/views/users/show.api.rsb +++ b/app/views/users/show.api.rsb @@ -1,6 +1,7 @@ api.user do api.id @user.id api.login @user.login if User.current.admin? || (User.current == @user) + api.admin @user.admin? if User.current.admin? || (User.current == @user) api.firstname @user.firstname api.lastname @user.lastname api.mail @user.mail if User.current.admin? || !@user.pref.hide_mail |