diff --git a/lib/runosaari/area.ex b/lib/runosaari/area.ex deleted file mode 100644 index bb2b4ea..0000000 --- a/lib/runosaari/area.ex +++ /dev/null @@ -1,104 +0,0 @@ -defmodule Runosaari.Area do - @moduledoc """ - The Area context. - """ - - import Ecto.Query, warn: false - alias Runosaari.Repo - - alias Runosaari.Area.Location - - @doc """ - Returns the list of locations. - - ## Examples - - iex> list_locations() - [%Location{}, ...] - - """ - def list_locations do - Repo.all(Location) - end - - @doc """ - Gets a single location. - - Raises `Ecto.NoResultsError` if the Location does not exist. - - ## Examples - - iex> get_location!(123) - %Location{} - - iex> get_location!(456) - ** (Ecto.NoResultsError) - - """ - def get_location!(id), do: Repo.get!(Location, id) - - @doc """ - Creates a location. - - ## Examples - - iex> create_location(%{field: value}) - {:ok, %Location{}} - - iex> create_location(%{field: bad_value}) - {:error, %Ecto.Changeset{}} - - """ - def create_location(attrs \\ %{}) do - %Location{} - |> Location.changeset(attrs) - |> Repo.insert() - end - - @doc """ - Updates a location. - - ## Examples - - iex> update_location(location, %{field: new_value}) - {:ok, %Location{}} - - iex> update_location(location, %{field: bad_value}) - {:error, %Ecto.Changeset{}} - - """ - def update_location(%Location{} = location, attrs) do - location - |> Location.changeset(attrs) - |> Repo.update() - end - - @doc """ - Deletes a location. - - ## Examples - - iex> delete_location(location) - {:ok, %Location{}} - - iex> delete_location(location) - {:error, %Ecto.Changeset{}} - - """ - def delete_location(%Location{} = location) do - Repo.delete(location) - end - - @doc """ - Returns an `%Ecto.Changeset{}` for tracking location changes. - - ## Examples - - iex> change_location(location) - %Ecto.Changeset{data: %Location{}} - - """ - def change_location(%Location{} = location, attrs \\ %{}) do - Location.changeset(location, attrs) - end -end diff --git a/lib/runosaari/area/location.ex b/lib/runosaari/area/location.ex deleted file mode 100644 index e42ed5f..0000000 --- a/lib/runosaari/area/location.ex +++ /dev/null @@ -1,21 +0,0 @@ -defmodule Runosaari.Area.Location do - use Ecto.Schema - import Ecto.Changeset - - schema "locations" do - field :address, :string - field :description, :string - field :max_seats, :integer - field :name, :string - field :reserved_seats, :integer - - timestamps() - end - - @doc false - def changeset(location, attrs) do - location - |> cast(attrs, [:name, :address, :reserved_seats, :max_seats, :description]) - |> validate_required([:name, :address, :reserved_seats, :max_seats, :description]) - end -end diff --git a/lib/runosaari/schedule/performance.ex b/lib/runosaari/schedule/performance.ex index 5d27a0c..42ff1ac 100644 --- a/lib/runosaari/schedule/performance.ex +++ b/lib/runosaari/schedule/performance.ex @@ -6,7 +6,6 @@ defmodule Runosaari.Schedule.Performance do field :description, :string field :notes, :string field :time, :naive_datetime - field :location_id, :id field :performer_id, :id timestamps() diff --git a/lib/runosaari_web/templates/layout/app.html.eex b/lib/runosaari_web/templates/layout/app.html.eex index 10ee95e..4ed4ddf 100644 --- a/lib/runosaari_web/templates/layout/app.html.eex +++ b/lib/runosaari_web/templates/layout/app.html.eex @@ -16,8 +16,8 @@