Compare commits

..

1 Commits

Author SHA1 Message Date
0729c63c3a add search to notes
Some checks are pending
continuous-integration/drone/push Build is pending
2022-11-19 00:19:55 -05:00

View File

@ -63,11 +63,11 @@ defmodule MemexWeb.Router do
live "/contexts/new", ContextLive.Index, :new
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/: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
put "/users/settings", UserSettingsController, :update
@ -83,10 +83,10 @@ defmodule MemexWeb.Router do
live "/note/:id", NoteLive.Show, :show
live "/contexts", ContextLive.Index, :index
live "/contexts/:id", ContextLive.Show, :show
live "/context/:id", ContextLive.Show, :show
live "/pipelines", PipelineLive.Index, :index
live "/pipelines/:id", PipelineLive.Show, :show
live "/pipeline/:id", PipelineLive.Show, :show
end
end