mirror of
https://github.com/plausible/analytics.git
synced 2024-12-24 01:54:34 +03:00
823f7a8800
* Bootstrap OpenAPI Funnel schemas * Implement Plugins API Funnel view * Allow casting funnel step directly from `%Goal{}` * Check feature availability on funnel creation just like it's done when inserting goals * Implement Plugins API context module for Funnels * Implement GET/PUT funnels via Plugins API * Fix typo * A rare event in which dialyzer found an actual bug, wow! * Format * Wrap creation request with a root `funnel` key * Format * Extract common funnel get query * Remove redundant tag * Refactor queries a bit
44 lines
1.1 KiB
Elixir
44 lines
1.1 KiB
Elixir
import Config
|
|
|
|
# We don't run a server during test. If one is required,
|
|
# you can enable the server option below.
|
|
config :plausible, PlausibleWeb.Endpoint, server: false
|
|
|
|
config :bcrypt_elixir, :log_rounds, 4
|
|
|
|
config :plausible, Plausible.Repo, pool: Ecto.Adapters.SQL.Sandbox
|
|
|
|
config :plausible, Plausible.ClickhouseRepo,
|
|
loggers: [Ecto.LogEntry],
|
|
pool_size: 15
|
|
|
|
config :plausible, Plausible.Mailer, adapter: Bamboo.TestAdapter
|
|
|
|
config :plausible,
|
|
paddle_api: Plausible.PaddleApi.Mock,
|
|
google_api: Plausible.Google.API.Mock
|
|
|
|
config :bamboo, :refute_timeout, 10
|
|
|
|
config :plausible,
|
|
session_timeout: 0,
|
|
http_impl: Plausible.HTTPClient.Mock
|
|
|
|
config :plausible, Plausible.Cache, enabled: false
|
|
|
|
config :ex_money, api_module: Plausible.ExchangeRateMock
|
|
|
|
config :plausible, Plausible.Ingestion.Counters, enabled: false
|
|
|
|
config :plausible, Oban, testing: :manual
|
|
|
|
config :plausible, Plausible.Verification.Checks.FetchBody,
|
|
req_opts: [
|
|
plug: {Req.Test, Plausible.Verification.Checks.FetchBody}
|
|
]
|
|
|
|
config :plausible, Plausible.Verification.Checks.Installation,
|
|
req_opts: [
|
|
plug: {Req.Test, Plausible.Verification.Checks.Installation}
|
|
]
|