Method: ActionDispatch::Routing::Mapper::Resources::Resource#collection_name
- Defined in:
- lib/action_dispatch/routing/mapper.rb
#collection_name ⇒ Object
Checks for uncountable plurals, and appends “_index” if the plural and singular form are the same.
1378 1379 1380 |
# File 'lib/action_dispatch/routing/mapper.rb', line 1378 def collection_name singular == plural ? "#{plural}_index" : plural end |