Sha256: d59f02bf2676b0cc615cce142f7a7b1c34f928fd9f22d80cf50c36b02cca6404
Contents?: true
Size: 525 Bytes
Versions: 9
Compression:
Stored size: 525 Bytes
Contents
Hubstats::Engine.routes.draw do root to: "pull_requests#index" post "/handler" => "events#handler", :as => "handler" get "/metrics" => "repos#dashboard", :as => "metrics" get "/pulls" => "pull_requests#index", :as => :pulls get "/users" => "users#index", :as => :users get "/repos" => "repos#index", :as => :repos get "/user/:id" => "users#show", :as => :user get "/:repo" => "repos#show", :as => :repo scope "/:repo", :as => :repo do get '/pull/:id' => "pull_requests#show", :as => :pull end end
Version data entries
9 entries across 9 versions & 1 rubygems