Removing *~ files added in the last commit
[tech-radar-editor.git] / web / router.ex~
diff --git a/web/router.ex~ b/web/router.ex~
deleted file mode 100644 (file)
index d1e2040..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-defmodule TechRadarEditor.Router do
-  use TechRadarEditor.Web, :router
-
-  pipeline :browser do
-    plug :accepts, ["html"]
-    plug :fetch_session
-    plug :fetch_flash
-    plug :protect_from_forgery
-    plug :put_secure_browser_headers
-  end
-
-  pipeline :api do
-    plug :accepts, ["json"]
-  end
-
-  scope "/", TechRadarEditor do
-    pipe_through :browser # Use the default browser stack
-
-    get "/", PageController, :index
-    get "/radar", RadarController, :index
-  end
-
-  scope "/admin", TechRadarEditor do
-    pipe_through :browser
-    resources "/radar_data_point", RadarDataPointController
-  end
-
-  # Other scopes may use custom stacks.
-  # scope "/api", TechRadarEditor do
-  #   pipe_through :api
-  # end
-end