diff --git a/CHANGELOG.md b/CHANGELOG.md index d49a683..98bef88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # CoopHub Changelog +## v0.2.10 + +* Updating elixir and node deps. +* Add Lyseon Tech to the list of co-ops. + +## v0.2.9 + +* Some minor adjustments, last 2020 release! + +## v0.2.8 + +* Updating elixir and node deps. +* Add Catalyst Cooperative to the list of co-ops. + +## v0.2.7 + +* [#57] Adding twitter meta image (#70) +* Added more coops =] + ## v0.2.6 * Rolling back cache warming to synchronous according GitHub's Best Practices for API Rate Limiter. diff --git a/config/config.exs b/config/config.exs index 9c43c77..413396d 100644 --- a/config/config.exs +++ b/config/config.exs @@ -13,7 +13,7 @@ config :coophub, CoophubWeb.Endpoint, url: [host: "localhost"], secret_key_base: "j8dPu7alWBB8pf3xaMOJ1ulQBBm23vHIROUbGOyLthlPUiSg5wv/j+KevCnbsjWV", render_errors: [view: CoophubWeb.ErrorView, accepts: ~w(html json)], - pubsub: [name: Coophub.PubSub, adapter: Phoenix.PubSub.PG2] + pubsub_server: Coophub.PubSub # Configures app options config :coophub, diff --git a/lib/coophub/application.ex b/lib/coophub/application.ex index fe048cb..56ffe9d 100644 --- a/lib/coophub/application.ex +++ b/lib/coophub/application.ex @@ -19,6 +19,7 @@ defmodule Coophub.Application do children = [ # Start the endpoint when the application starts CoophubWeb.Endpoint, + {Phoenix.PubSub, [name: Coophub.PubSub, adapter: Phoenix.PubSub.PG2]}, # Starts a worker by calling: Coophub.Worker.start_link(arg) # {Coophub.Worker, arg}, %{ diff --git a/lib/coophub_web/templates/layout/app.html.eex b/lib/coophub_web/templates/layout/app.html.eex index 8b0fb43..86499ff 100644 --- a/lib/coophub_web/templates/layout/app.html.eex +++ b/lib/coophub_web/templates/layout/app.html.eex @@ -28,7 +28,7 @@
- <%= render @view_module, @view_template, assigns %> + <%= @inner_content %>