You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.api.rsb 281B

1234567891011
  1. api.array :groups do
  2. @groups.each do |group|
  3. api.group do
  4. api.id group.id
  5. api.name group.lastname
  6. api.builtin group.builtin_type if group.builtin_type
  7. render_api_custom_values group.visible_custom_field_values, api
  8. end
  9. end
  10. end