Skip to content

Commit

Permalink
DELETE lib/app_web/templates/person/* #65
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed Oct 2, 2020
1 parent 47ec5ec commit 9495195
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 157 deletions.
2 changes: 1 addition & 1 deletion lib/app_web/router.ex
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ defmodule AppWeb.Router do

# need to re-create logout
# get "/people/logout", PersonController, :logout
# resources "/people", PersonController

# generic resources for schemas:
resources "/items", ItemController
resources "/lists", ListController
resources "/people", PersonController
resources "/status", StatusController
resources "/tags", TagController
resources "/timers", TimerController
Expand Down
5 changes: 0 additions & 5 deletions lib/app_web/templates/person/edit.html.eex

This file was deleted.

39 changes: 0 additions & 39 deletions lib/app_web/templates/person/form.html.eex

This file was deleted.

40 changes: 0 additions & 40 deletions lib/app_web/templates/person/index.html.eex

This file was deleted.

18 changes: 0 additions & 18 deletions lib/app_web/templates/person/info.html.eex

This file was deleted.

5 changes: 0 additions & 5 deletions lib/app_web/templates/person/new.html.eex

This file was deleted.

48 changes: 0 additions & 48 deletions lib/app_web/templates/person/show.html.eex

This file was deleted.

4 changes: 3 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ defmodule App.MixProject do
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
c: :test,
coveralls: :test,
"coveralls.json": :test,
"coveralls.html": :test
Expand Down Expand Up @@ -78,7 +79,8 @@ defmodule App.MixProject do
"ecto.setup": ["ecto.create --quiet", "ecto.migrate --quiet", "seeds"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
seeds: ["run priv/repo/seeds.exs"],
test: ["ecto.reset", "test"]
test: ["ecto.reset", "test"],
c: ["coveralls.html"]
]
end
end

0 comments on commit 9495195

Please sign in to comment.