Mercurial > hg > soundsoftware-site
comparison .svn/pristine/6f/6fd3e6a84c471925f6b78ad778e38965d133a8ba.svn-base @ 909:cbb26bc654de redmine-1.3
Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author | Chris Cannam |
---|---|
date | Fri, 24 Feb 2012 19:09:32 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
908:c6c2cbd0afee | 909:cbb26bc654de |
---|---|
1 api.array :users, api_meta(:total_count => @user_count, :offset => @offset, :limit => @limit) do | |
2 @users.each do |user| | |
3 api.user do | |
4 api.id user.id | |
5 api.login user.login | |
6 api.firstname user.firstname | |
7 api.lastname user.lastname | |
8 api.mail user.mail | |
9 api.created_on user.created_on | |
10 api.last_login_on user.last_login_on | |
11 | |
12 render_api_custom_values user.visible_custom_field_values, api | |
13 end | |
14 end | |
15 end |