Skip to content

Commit

Permalink
Merge pull request #660 from naymspace/feature/fix-incorrect-live-res…
Browse files Browse the repository at this point in the history
…ource-configuration-in-docs

Fix incorrect configuration in installation guide
  • Loading branch information
Flo0807 authored Nov 8, 2024
2 parents 2ceec69 + 85028d3 commit e955cf4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions guides/get_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,7 @@ defmodule MyAppWeb.Live.PostLive do
schema: MyApp.Blog.Post,
repo: MyApp.Repo,
update_changeset: &MyApp.Blog.Post.update_changeset/3,
create_changeset: &MyApp.Blog.Post.create_changeset/3,
item_query: &__MODULE__.item_query/3
create_changeset: &MyApp.Blog.Post.create_changeset/3
],
layout: {MyAppWeb.Layouts, :admin},
pubsub: [
Expand Down Expand Up @@ -217,8 +216,7 @@ defmodule MyAppWeb.Live.PostLive do
schema: MyApp.Blog.Post,
repo: MyApp.Repo,
update_changeset: &MyApp.Blog.Post.update_changeset/3,
create_changeset: &MyApp.Blog.Post.create_changeset/3,
item_query: &__MODULE__.item_query/3
create_changeset: &MyApp.Blog.Post.create_changeset/3
],
layout: {MyAppWeb.Layouts, :admin},
pubsub: [
Expand Down

0 comments on commit e955cf4

Please sign in to comment.