peertube-plugin-sell-storage 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
## About <a name = "about"></a>
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
This plugin allows you to sell storage space to your users
|
|
15
|
+
This plugin allows you to sell storage space (video quota) to your users automatically with Stripe.
|
|
16
16
|
|
|
17
17
|
The most notable features are:
|
|
18
18
|
- Automatic video quota increases and decreases without human intervention.
|
|
@@ -76,12 +76,12 @@ Go to https://dashboard.stripe.com/webhooks and create a webhook with the follow
|
|
|
76
76
|
- `invoice.payment_failed`
|
|
77
77
|
- `payment_intent.succeeded`
|
|
78
78
|
|
|
79
|
-
For the webhook URL, make sure the version in the URL matches the version of the plugin. For example, if your plugin is on version `1.1.
|
|
80
|
-
`https://your-instance.tld/plugins/sell-storage/1.1.
|
|
79
|
+
For the webhook URL, make sure the version in the URL matches the version of the plugin. For example, if your plugin is on version `1.1.8` use the URL:
|
|
80
|
+
`https://your-instance.tld/plugins/sell-storage/1.1.8/router/webhook`
|
|
81
81
|
|
|
82
82
|
An example of this with the correct version in the webhook URL is available in the plugin settings.
|
|
83
83
|
|
|
84
|
-
**Note: If you update the plugin, you'll have to update the webhook link in Stripe with the new version. For example, if you update from 1.1.3 to 1.1.
|
|
84
|
+
**Note: If you update the plugin, you'll have to update the webhook link in Stripe with the new version. For example, if you update from 1.1.3 to 1.1.8 change the webhook URL to `https://your-instance.tld/plugins/sell-storage/1.1.8/router/webhook`. Don't forget this!**
|
|
85
85
|
|
|
86
86
|
### PeerTube Plugin
|
|
87
87
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peertube-plugin-sell-storage",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "1.1.
|
|
3
|
+
"description": "Completely automated storage (video quota) subscriptions to users.",
|
|
4
|
+
"version": "1.1.8",
|
|
5
5
|
"author": "AyaaDev",
|
|
6
6
|
"bugs": "https://github.com/ayaadev/peertube-plugin-sell-storage",
|
|
7
7
|
"clientScripts": [
|