Compare commits

..

1 Commits

Author SHA1 Message Date
c2fb7bac03 add search to notes
Some checks failed
continuous-integration/drone/push Build is failing
2022-11-19 00:21:14 -05:00

View File

@ -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 "/context/:id/show/edit", ContextLive.Show, :edit live "/contexts/: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 "/pipeline/:id/edit", PipelineLive.Show, :edit live "/pipelines/:id/show/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 "/context/:id", ContextLive.Show, :show live "/contexts/:id", ContextLive.Show, :show
live "/pipelines", PipelineLive.Index, :index live "/pipelines", PipelineLive.Index, :index
live "/pipeline/:id", PipelineLive.Show, :show live "/pipelines/:id", PipelineLive.Show, :show
end end
end end