-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add billing enabled and sales email to Helm chart and /settings API e…
…ndpoint (#1873) Backend work for first two tasks of #1875 New /billing API endpoint to be added separately once we have a better idea of what data we can get from the payment processor.
- Loading branch information
Showing
4 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,6 @@ def test_settings(): | |
"maxPagesPerCrawl": 4, | ||
"maxScale": 3, | ||
"defaultPageLoadTimeSeconds": 120, | ||
"billingEnabled": False, | ||
"salesEmail": "[email protected]", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,6 +110,9 @@ job_memory: "70Mi" | |
|
||
profile_browser_idle_seconds: 60 | ||
|
||
billing_enabled: false | ||
sales_email: "[email protected]" | ||
|
||
# if set, print last 'log_failed_crawl_lines' of each failed | ||
# crawl pod to backend operator stdout | ||
# mostly intended for debugging / testing | ||
|