From 445d5f6222437cbb6c911d3b0be1a9f24db06bb0 Mon Sep 17 00:00:00 2001 From: appflowy Date: Sun, 14 Aug 2022 16:05:14 +0800 Subject: [PATCH] chore: disable create board --- frontend/app_flowy/lib/plugins/board/board.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app_flowy/lib/plugins/board/board.dart b/frontend/app_flowy/lib/plugins/board/board.dart index 36d181ae3e..2954a7cbf9 100644 --- a/frontend/app_flowy/lib/plugins/board/board.dart +++ b/frontend/app_flowy/lib/plugins/board/board.dart @@ -31,7 +31,7 @@ class BoardPluginBuilder implements PluginBuilder { class BoardPluginConfig implements PluginConfig { @override - bool get creatable => true; + bool get creatable => false; } class BoardPlugin extends Plugin {