##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10409:ad94777d9c24
r15869:b40d66f39fa8
Show More
show.api.rsb
9 lines | 167 B | text/plain | TextLexer
Jean-Philippe Lang
Expose roles details via REST API (#11502)....
r10409 api.role do
api.id @role.id
api.name @role.name
api.array :permissions do
@role.permissions.each do |perm|
api.permission(perm.to_s)
end
end
end