config/routes.rb in postman_mta-0.1.2 vs config/routes.rb in postman_mta-0.1.3
- old
+ new
@@ -1,14 +1,17 @@
PostmanMta::Engine.routes.draw do
- resources :messages, only: [:show, :create], param: :token
+ resources :messages, only: [:show, :create], param: :token do
+ resources :attachments, only: :show, param: :uuid
+ end
resources :conversations, only: [:index, :show, :destroy] do
[:inbox, :sent, :spam, :trash].each do |folder|
match folder, on: :collection, via: :get
end
match :starred, on: :collection, via: :get, to: 'conversations#index'
match :read, on: :collection, via: [:put, :patch]
+ match :unread, on: :collection, via: [:put, :patch]
match :move, on: :collection, via: [:put, :patch]
resources :labels, only: [:create, :destroy]
resources :tags, only: [:create, :destroy]
end