]> git.openstreetmap.org Git - rails.git/commit
Use resourceful routes for web mailboxes
authorAnton Khorev <tony29@yandex.ru>
Sun, 29 Dec 2024 05:27:09 +0000 (08:27 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sun, 29 Dec 2024 05:40:39 +0000 (08:40 +0300)
commitc7e038a4d098ef9f42eb13edf29aef24cbd537ef
tree011b5e7fa355381f7ed170b6618200e73fe861fa
parent99af52b4785438f931481f730a91805e1ddf975f
Use resourceful routes for web mailboxes
21 files changed:
app/controllers/messages/inboxes_controller.rb [new file with mode: 0644]
app/controllers/messages/mailboxes_controller.rb [new file with mode: 0644]
app/controllers/messages/muted_inboxes_controller.rb [new file with mode: 0644]
app/controllers/messages/outboxes_controller.rb [new file with mode: 0644]
app/controllers/messages_controller.rb
app/views/layouts/_header.html.erb
app/views/messages/inboxes/show.html.erb [moved from app/views/messages/inbox.html.erb with 52% similarity]
app/views/messages/mailboxes/_heading.html.erb [moved from app/views/messages/_heading.html.erb with 60% similarity]
app/views/messages/mailboxes/_message.html.erb [moved from app/views/messages/_message_summary.html.erb with 100% similarity]
app/views/messages/mailboxes/_messages_table.html.erb [moved from app/views/messages/_messages_table.html.erb with 75% similarity]
app/views/messages/muted_inboxes/show.html.erb [moved from app/views/messages/muted.html.erb with 82% similarity]
app/views/messages/new.html.erb
app/views/messages/outboxes/_message.html.erb [moved from app/views/messages/_sent_message_summary.html.erb with 100% similarity]
app/views/messages/outboxes/show.html.erb [moved from app/views/messages/outbox.html.erb with 87% similarity]
config/locales/en.yml
config/routes.rb
test/controllers/messages/inboxes_controller_test.rb [new file with mode: 0644]
test/controllers/messages/muted_inboxes_controller_test.rb [new file with mode: 0644]
test/controllers/messages/outboxes_controller_test.rb [new file with mode: 0644]
test/controllers/messages_controller_test.rb
test/system/messages_test.rb