To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / enumerations / index.api.rsb @ 1531:ae8145b28b2b

History | View | Annotate | Download (249 Bytes)

1
api.array @klass.name.underscore.pluralize do
2
  @enumerations.each do |enumeration|
3
    api.__send__ @klass.name.underscore do
4
      api.id enumeration.id
5
      api.name enumeration.name
6
      api.is_default enumeration.is_default
7
    end
8
  end
9
end