Соответствующая строка в выходных данных команды маршрутизации маршрутов для вывода списка всех статей выглядит следующим образом:
Articles GET /articles(.:format) article # index
URIпуть к вашему новому представлению в приведенной выше строке _____________.
Контроллер - это ___________.
Действие или метод в вышеуказанном контроллере - это _____________
********* ВЫХОД ИЗ КОМАНДЫ BASH ************************
ec2-user:~/environment/ruby_labs/blog (master) $ rails routes
Prefix Verb URI Pattern Controller#Action
welcome_index GET /welcome/index(.:format) welcome#index
new_articles GET /articles/new(.:format) articles#new
edit_articles GET /articles/edit(.:format) articles#edit
articles GET /articles(.:format) articles#show
PATCH /articles(.:format) articles#update
PUT /articles(.:format) articles#update
DELETE /articles(.:format) articles#destroy
POST /articles(.:format) articles#create
root GET / welcome#index
article GET /articles/:id(.:format) articles#show
GET /articles(.:format) articles#index
rails_service_blob GET /rails/active_storage/blobs/:signed_id/*filename(.:format) active_storage/blobs#show
rails_blob_representation GET /rails/active_storage/representations/:signed_blob_id/:variation_key/*filename(.:format) active_storage/representations#show
rails_disk_service GET /rails/active_storage/disk/:encoded_key/*filename(.:format) active_storage/disk#show
update_rails_disk_service PUT /rails/active_storage/disk/:encoded_token(.:format) active_storage/disk#update
rails_direct_uploads POST /rails/active_storage/direct_uploads(.:format) active_storage/direct_uploads#create