if @this_user.description
xml.tag! "description", @this_user.description
end
- xml.tag! "contributor-terms",
- :agreed => !!@this_user.terms_agreed,
- :pd => !!@this_user.consider_pd
+ if @user && @user == @this_user
+ xml.tag! "contributor-terms", :agreed => !!@this_user.terms_agreed,
+ :pd => !!@this_user.consider_pd
+ else
+ xml.tag! "contributor-terms", :agreed => !!@this_user.terms_agreed
+ end
if @this_user.image.file?
xml.tag! "img", :href => "http://#{SERVER_URL}#{@this_user.image.url}"
end
assert_response :success
# check that we aren't revealing private information
+ assert_select "contributor-terms[pd]", false
assert_select "home", false
assert_select "languages", false