Skip to content

Commit 2def650

Browse files
John W. DarringtonJohn W. Darrington
authored andcommitted
fixed
1 parent a6f5b09 commit 2def650

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

priv/repo/tdms_seeds.exs

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ Accounts.set_admin(admin)
2828
module_type: :elixir,
2929
module_name: Datum.Plugins.Tdms,
3030
filetypes: [".tdms_index"],
31-
plugin_type: :extractor
31+
plugin_type: :extractor,
32+
enabled: true
3233
})
3334

3435
{:ok, %Datum.Plugins.Plugin{} = _plugin} =
@@ -37,7 +38,8 @@ Accounts.set_admin(admin)
3738
module_type: :elixir,
3839
module_name: Datum.Plugins.CSV,
3940
filetypes: [".csv", "text/csv"],
40-
plugin_type: :extractor
41+
plugin_type: :extractor,
42+
enabled: true
4143
})
4244

4345
{:ok, %Datum.Plugins.Plugin{} = _plugin} =
@@ -46,7 +48,8 @@ Accounts.set_admin(admin)
4648
module_type: :elixir,
4749
module_name: Datum.Plugins.Parquet,
4850
filetypes: [".pqt", "parquet", "application/vnd.apache.parquet"],
49-
plugin_type: :extractor
51+
plugin_type: :extractor,
52+
enabled: true
5053
})
5154

5255
{:ok, %Datum.Plugins.Plugin{} = _plugin} =
@@ -56,7 +59,8 @@ Accounts.set_admin(admin)
5659
module_name: "sensor_plotting",
5760
path: Path.join(__DIR__, "sensor_plotting.py"),
5861
filetypes: [".tdms", "tdms"],
59-
plugin_type: :sampler
62+
plugin_type: :sampler,
63+
enabled: true
6064
})
6165

6266
{:ok, %Datum.Plugins.Plugin{} = plugin} =
@@ -66,7 +70,8 @@ Accounts.set_admin(admin)
6670
module_name: "tdms_duckdb",
6771
path: Path.join(__DIR__, "tdms_duckdb.py"),
6872
filetypes: [".tdms", "tdms"],
69-
plugin_type: :sampler
73+
plugin_type: :sampler,
74+
enabled: true
7075
})
7176

7277
# note that the origin db won't be created here if it doesn't exist

0 commit comments

Comments
 (0)