mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Implemented plugin secrets, refs #538
This commit is contained in:
parent
bc852cf37d
commit
002c9c464a
3 changed files with 32 additions and 3 deletions
|
|
@ -97,6 +97,7 @@ def make_app_client(
|
|||
memory=False,
|
||||
config=None,
|
||||
filename="fixtures.db",
|
||||
metadata=None,
|
||||
is_immutable=False,
|
||||
extra_databases=None,
|
||||
inspect_data=None,
|
||||
|
|
@ -139,7 +140,7 @@ def make_app_client(
|
|||
immutables=immutables,
|
||||
memory=memory,
|
||||
cors=cors,
|
||||
metadata=METADATA,
|
||||
metadata=metadata or METADATA,
|
||||
plugins_dir=plugins_dir,
|
||||
config=config,
|
||||
inspect_data=inspect_data,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue