summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/views/users/index.api.rsb1
-rw-r--r--app/views/users/show.api.rsb1
-rw-r--r--test/integration/api_test/users_test.rb12
3 files changed, 14 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
diff --git a/test/integration/api_test/users_test.rb b/test/integration/api_test/users_test.rb
index 192557808..80f237b25 100644
--- a/test/integration/api_test/users_test.rb
+++ b/test/integration/api_test/users_test.rb
@@ -125,6 +125,18 @@ class Redmine::ApiTest::UsersTest < Redmine::ApiTest::Base
assert_select 'user status', :text => User.find(1).status.to_s
end
+ test "GET /users/:id should return admin status for current user" do
+ get '/users/2.xml', :headers => credentials('jsmith')
+ assert_response :success
+ assert_select 'user admin', :text => 'false'
+ end
+
+ test "GET /users/:id should not return admin status for other user" do
+ get '/users/3.xml', :headers => credentials('jsmith')
+ assert_response :success
+ assert_select 'user admin', 0
+ end
+
test "POST /users.xml with valid parameters should create the user" do
assert_difference('User.count') do
post '/users.xml',