Compare commits
1 Commits
c2fb7bac03
...
0729c63c3a
Author | SHA1 | Date | |
---|---|---|---|
0729c63c3a |
@ -63,11 +63,11 @@ defmodule MemexWeb.Router do
|
|||||||
|
|
||||||
live "/contexts/new", ContextLive.Index, :new
|
live "/contexts/new", ContextLive.Index, :new
|
||||||
live "/contexts/:id/edit", ContextLive.Index, :edit
|
live "/contexts/:id/edit", ContextLive.Index, :edit
|
||||||
live "/contexts/:id/show/edit", ContextLive.Show, :edit
|
live "/context/:id/show/edit", ContextLive.Show, :edit
|
||||||
|
|
||||||
live "/pipelines/new", PipelineLive.Index, :new
|
live "/pipelines/new", PipelineLive.Index, :new
|
||||||
live "/pipelines/:id/edit", PipelineLive.Index, :edit
|
live "/pipelines/:id/edit", PipelineLive.Index, :edit
|
||||||
live "/pipelines/:id/show/edit", PipelineLive.Show, :edit
|
live "/pipeline/:id/edit", PipelineLive.Show, :edit
|
||||||
|
|
||||||
get "/users/settings", UserSettingsController, :edit
|
get "/users/settings", UserSettingsController, :edit
|
||||||
put "/users/settings", UserSettingsController, :update
|
put "/users/settings", UserSettingsController, :update
|
||||||
@ -83,10 +83,10 @@ defmodule MemexWeb.Router do
|
|||||||
live "/note/:id", NoteLive.Show, :show
|
live "/note/:id", NoteLive.Show, :show
|
||||||
|
|
||||||
live "/contexts", ContextLive.Index, :index
|
live "/contexts", ContextLive.Index, :index
|
||||||
live "/contexts/:id", ContextLive.Show, :show
|
live "/context/:id", ContextLive.Show, :show
|
||||||
|
|
||||||
live "/pipelines", PipelineLive.Index, :index
|
live "/pipelines", PipelineLive.Index, :index
|
||||||
live "/pipelines/:id", PipelineLive.Show, :show
|
live "/pipeline/:id", PipelineLive.Show, :show
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user