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 / roles / show.api.rsb @ 1591:63650ae64bf2

History | View | Annotate | Download (167 Bytes)

1
api.role do
2
  api.id @role.id
3
  api.name @role.name
4
  api.array :permissions do
5
    @role.permissions.each do |perm|
6
      api.permission(perm.to_s)
7
    end
8
  end
9
end