Method: ActionDispatch::Routing::Mapper::Resources::Resource#collection_name
- Defined in:
- actionpack/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.
1236 1237 1238 |
# File 'actionpack/lib/action_dispatch/routing/mapper.rb', line 1236 def collection_name singular == plural ? "#{plural}_index" : plural end |