Skip to content

Commit 68b1d41

Browse files
authored
Merge pull request #94 from epochtalk/fix-board-seed
fix(seed): add meta to board in seed
2 parents 45a413b + 3e27448 commit 68b1d41

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

priv/repo/seed_forum.exs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@ board_slug = "general-discussion"
1414
board = %{
1515
name: board_name,
1616
description: board_description,
17-
slug: board_slug
17+
slug: board_slug,
18+
meta: %{
19+
"disable_post_edit" => nil,
20+
"disable_self_mod" => false,
21+
"disable_signature" => false
22+
}
1823
}
1924

2025
Repo.transaction(fn ->

0 commit comments

Comments
 (0)