Skip to content

Commit 6f7875a

Browse files
deploy: cbca89e
1 parent 97a651b commit 6f7875a

File tree

266 files changed

+601
-456
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

266 files changed

+601
-456
lines changed

404.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

API/Greenfield/v1/swagger.json

Lines changed: 185 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -5609,6 +5609,90 @@
56095609
]
56105610
}
56115611
},
5612+
"/api/v1/server/email": {
5613+
"get": {
5614+
"tags": [
5615+
"ServerEmail"
5616+
],
5617+
"summary": "Get server email settings",
5618+
"description": "Retrieve the email settings configured for the server. The password field will be masked if present.",
5619+
"operationId": "ServerEmail_GetSettings",
5620+
"responses": {
5621+
"200": {
5622+
"description": "Server email settings",
5623+
"content": {
5624+
"application/json": {
5625+
"schema": {
5626+
"$ref": "#/components/schemas/GetServerEmailSettings"
5627+
}
5628+
}
5629+
}
5630+
},
5631+
"403": {
5632+
"description": "Forbidden - Insufficient permissions"
5633+
}
5634+
},
5635+
"security": [
5636+
{
5637+
"API_Key": [
5638+
"btcpay.server.canmodifyserversettings"
5639+
],
5640+
"Basic": []
5641+
}
5642+
]
5643+
},
5644+
"put": {
5645+
"tags": [
5646+
"ServerEmail"
5647+
],
5648+
"summary": "Update server email settings",
5649+
"description": "Update server's email settings.",
5650+
"operationId": "ServerEmail_UpdateSettings",
5651+
"requestBody": {
5652+
"required": true,
5653+
"content": {
5654+
"application/json": {
5655+
"schema": {
5656+
"$ref": "#/components/schemas/UpdateServerEmailSettings"
5657+
}
5658+
}
5659+
}
5660+
},
5661+
"responses": {
5662+
"200": {
5663+
"description": "Server email settings",
5664+
"content": {
5665+
"application/json": {
5666+
"schema": {
5667+
"$ref": "#/components/schemas/GetServerEmailSettings"
5668+
}
5669+
}
5670+
}
5671+
},
5672+
"400": {
5673+
"description": "Invalid request or email format",
5674+
"content": {
5675+
"application/json": {
5676+
"schema": {
5677+
"$ref": "#/components/schemas/ProblemDetails"
5678+
}
5679+
}
5680+
}
5681+
},
5682+
"403": {
5683+
"description": "Forbidden - Insufficient permissions"
5684+
}
5685+
},
5686+
"security": [
5687+
{
5688+
"API_Key": [
5689+
"btcpay.server.canmodifyserversettings"
5690+
],
5691+
"Basic": []
5692+
}
5693+
]
5694+
}
5695+
},
56125696
"/api/v1/server/info": {
56135697
"get": {
56145698
"tags": [
@@ -5704,15 +5788,15 @@
57045788
"$ref": "#/components/parameters/StoreId"
57055789
}
57065790
],
5707-
"description": "View email settings of the specified store",
5791+
"description": "Retrieve the email settings configured for specific store. The password field will be masked if present.",
57085792
"operationId": "Stores_GetStoreEmailSettings",
57095793
"responses": {
57105794
"200": {
57115795
"description": "specified store email settings",
57125796
"content": {
57135797
"application/json": {
57145798
"schema": {
5715-
"$ref": "#/components/schemas/EmailSettingsData"
5799+
"$ref": "#/components/schemas/GetEmailSettings"
57165800
}
57175801
}
57185802
}
@@ -5750,7 +5834,7 @@
57505834
"content": {
57515835
"application/json": {
57525836
"schema": {
5753-
"$ref": "#/components/schemas/EmailSettingsData"
5837+
"$ref": "#/components/schemas/UpdateEmailSettings"
57545838
}
57555839
}
57565840
},
@@ -5763,7 +5847,7 @@
57635847
"content": {
57645848
"application/json": {
57655849
"schema": {
5766-
"$ref": "#/components/schemas/EmailSettingsData"
5850+
"$ref": "#/components/schemas/GetEmailSettings"
57675851
}
57685852
}
57695853
}
@@ -5810,7 +5894,22 @@
58105894
"content": {
58115895
"application/json": {
58125896
"schema": {
5813-
"$ref": "#/components/schemas/EmailData"
5897+
"type": "object",
5898+
"additionalProperties": false,
5899+
"properties": {
5900+
"email": {
5901+
"type": "string",
5902+
"description": "Email of the recipient"
5903+
},
5904+
"subject": {
5905+
"type": "string",
5906+
"description": "Subject of the email"
5907+
},
5908+
"body": {
5909+
"type": "string",
5910+
"description": "Body of the email to send as plain text."
5911+
}
5912+
}
58145913
}
58155914
}
58165915
},
@@ -11809,6 +11908,38 @@
1180911908
}
1181011909
}
1181111910
},
11911+
"UpdateServerEmailSettings": {
11912+
"allOf": [
11913+
{
11914+
"$ref": "#/components/schemas/UpdateEmailSettings"
11915+
},
11916+
{
11917+
"type": "object",
11918+
"properties": {
11919+
"enableStoresToUseServerEmailSettings": {
11920+
"type": "boolean",
11921+
"description": "Indicates if stores can use server email settings"
11922+
}
11923+
}
11924+
}
11925+
]
11926+
},
11927+
"GetServerEmailSettings": {
11928+
"allOf": [
11929+
{
11930+
"$ref": "#/components/schemas/GetEmailSettings"
11931+
},
11932+
{
11933+
"type": "object",
11934+
"properties": {
11935+
"enableStoresToUseServerEmailSettings": {
11936+
"type": "boolean",
11937+
"description": "Indicates if stores can use server email settings"
11938+
}
11939+
}
11940+
}
11941+
]
11942+
},
1181211943
"ApplicationServerInfoData": {
1181311944
"type": "object",
1181411945
"properties": {
@@ -11888,57 +12019,67 @@
1188812019
}
1188912020
}
1189012021
},
11891-
"EmailData": {
11892-
"type": "object",
11893-
"additionalProperties": false,
11894-
"properties": {
11895-
"email": {
11896-
"type": "string",
11897-
"description": "Email of the recipient"
12022+
"UpdateEmailSettings": {
12023+
"allOf": [
12024+
{
12025+
"$ref": "#/components/schemas/EmailSettingsBase"
1189812026
},
11899-
"subject": {
11900-
"type": "string",
11901-
"description": "Subject of the email"
12027+
{
12028+
"type": "object",
12029+
"properties": {
12030+
"password": {
12031+
"type": "string",
12032+
"description": "SMTP password. Keep null or empty to not update it.",
12033+
"nullable": true,
12034+
"example": "MyS3cr3t"
12035+
}
12036+
}
12037+
}
12038+
]
12039+
},
12040+
"GetEmailSettings": {
12041+
"allOf": [
12042+
{
12043+
"$ref": "#/components/schemas/EmailSettingsBase"
1190212044
},
11903-
"body": {
11904-
"type": "string",
11905-
"description": "Body of the email to send as plain text."
12045+
{
12046+
"type": "object",
12047+
"properties": {
12048+
"passwordSet": {
12049+
"type": "boolean",
12050+
"description": "`true` if the password has been set."
12051+
}
12052+
}
1190612053
}
11907-
}
12054+
]
1190812055
},
11909-
"EmailSettingsData": {
12056+
"EmailSettingsBase": {
1191012057
"type": "object",
11911-
"additionalProperties": false,
1191212058
"properties": {
12059+
"from": {
12060+
"type": "string",
12061+
"description": "The sender email address",
12062+
"example": "[email protected]"
12063+
},
1191312064
"server": {
1191412065
"type": "string",
11915-
"description": "Smtp server host"
12066+
"description": "SMTP server host",
12067+
"example": "smtp.gmail.com"
1191612068
},
1191712069
"port": {
11918-
"type": "number",
11919-
"description": "Smtp server port"
12070+
"type": "integer",
12071+
"description": "SMTP server port",
12072+
"example": 587
1192012073
},
1192112074
"login": {
1192212075
"type": "string",
11923-
"description": "Smtp server username"
11924-
},
11925-
"password": {
11926-
"type": "string",
11927-
"description": "Smtp server password"
11928-
},
11929-
"from": {
11930-
"type": "string",
11931-
"format": "email",
11932-
"description": "Email to send from"
11933-
},
11934-
"fromDisplay": {
11935-
"type": "string",
11936-
"description": "The name of the sender"
12076+
"description": "SMTP username",
12077+
"example": "John.Smith"
1193712078
},
1193812079
"disableCertificateCheck": {
1193912080
"type": "boolean",
11940-
"default": false,
11941-
"description": "Disable TLS certificate security checks"
12081+
"description": "Disable TLS certificate security checks",
12082+
"example": false
1194212083
}
1194312084
}
1194412085
},
@@ -13586,6 +13727,10 @@
1358613727
"name": "Pull payments payout (Public)",
1358713728
"description": "Pull payments payout (Public) operations"
1358813729
},
13730+
{
13731+
"name": "ServerEmail",
13732+
"description": "Server Email Settings operations"
13733+
},
1358913734
{
1359013735
"name": "ServerInfo",
1359113736
"description": "Server Info operations"

AdvancedForms/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Apps/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

BTCPayServer/LocalDevSetup/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

BTCPayServer/Security/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

BTCPayServer/db-migration/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

BTCPayServer/greenfield-authorization/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

BTCPayServer/greenfield-development/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

BTCPayVsOthers/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

BigCommerce/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Breez/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Bringin/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

ColdCardWallet/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Community/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Conference-PoS-guide/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Configurator/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Contribute/Design/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Contribute/Dev/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Contribute/DevCode/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Contribute/DevTest/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Contribute/Misc/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Contribute/Translate/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Contribute/Write/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Contribute/WriteBlog/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Contribute/WriteDocs/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Contribute/WriteSoftware/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Contribute/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

CreateStore/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

CreateWallet/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

CustomIntegration/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Dashboard/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/Azure/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/AzurePennyPinching/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/Clovyr/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/DynamicDNS/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/GoogleCloud/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/Hack0/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/Hardware/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/HardwareAsAService/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/LightningInABox/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/LunaNode/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/ManualDeployment/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/ManualDeploymentExtended/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/RaspberryPi4/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/ReverseProxyToTor/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/ReverseSSHtunnel/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/ThirdPartyHosting/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/voltagecloud/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Deployment/webdeployment/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/Altcoins/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/GreenFieldExample-NodeJS/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/GreenFieldExample/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/GreenfieldExample-PHP/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/InvoiceMetadata/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/LocalDev/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/LocalDevelopment/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/Plugins/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/TestnetDemo/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/Theme/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/ecommerce-integration-guide/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Development/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Docker/backup-restore/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Docker/chatwoot/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Docker/cloudflare-tunnel/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Docker/fastsync/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Docker/fireflyiii/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Docker/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Docker/joinmarket/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Docker/lightning-terminal/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Docker/ndlc/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Docker/pihole/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Docker/tallycoin-connect/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Drupal/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

DynamicReports/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

ElectrumPersonalServer/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

ElectrumWallet/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

ElectrumX/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

FAQ/Altcoin/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

FAQ/Apps/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

FAQ/Deployment/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

FAQ/General/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

FAQ/Integrations/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

FAQ/LightningNetwork/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

FAQ/ServerSettings/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

FAQ/Stores/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

FAQ/Synchronization/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

FAQ/Wallet/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

FAQ/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Forms/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Grandnode/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Guide/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

HardwareWalletIntegration/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

InvoiceNinja/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Invoices/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

LNDhubAPI/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

LedgerWallet/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

LightningNetwork/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

LightningNetwork_PaymentChannels/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Magento/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

NBXplorer/API/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

NBXplorer/Postgres-Migration/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

NBXplorer/Postgres-Schema/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

NBXplorer/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Nopcommerce/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Nostr/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Notifications/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Odoo/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

OpenCart/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Payjoin/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

PaymentRequests/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Payouts/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Payroll/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

PhocaCart/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

PodServer/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

PrestaShop/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Pretix/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

PullPayments/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Refund/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

RegisterAccount/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Reporting/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Shopify/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

ShopifyV2/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Shopware/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

SideShift/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Sign-PSBT-with-sparrow-wallet/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Smartstore/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Support/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

TicketTailor/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Translations/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Transmuter/DCA/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Transmuter/EmailReceiptsPreset/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Transmuter/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Trocador/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Troubleshooting/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

TryItOut/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

UseCase/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Vault/HowToVerify/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

VirtueMart/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Wabisabi/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Walkthrough/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Wallet/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

WalletSetup/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

WasabiWallet/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

WhatsNext/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Wix/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

WooCommerce/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Xenforo/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

Zapier/index.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)