Sha256: 360e6796a5a07b42e3ce841dcae9cddae71361fead180986068bd1b6a15442f8

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

PostmanMta::Engine.routes.draw do
  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 :search, on: :collection, via: :get
    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, :update, :destroy]
    resources :tags, only: [:create, :destroy]
  end

  namespace :stats do
    resources :messages, only: [] do
      match :unread, on: :collection, via: :get
    end
  end

  namespace :archive do
    resources :conversations, only: [:index, :show]
  end

  resources :routes, only: :index
  resources :domains, only: :index
  resources :labels, only: :index
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
postman_mta-0.2.2 config/routes.rb