Merge branch 'release/1.0.1'

This commit is contained in:
ntr 2019-09-02 19:09:11 +10:00
commit 5d4d78c390
8 changed files with 12 additions and 13 deletions

View File

@ -1 +1 @@
1.0.0
1.0.1

View File

@ -1,6 +1,6 @@
{
"name": "mnml-client",
"version": "1.0.0",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {

View File

@ -1,6 +1,6 @@
{
"name": "mnml-client",
"version": "1.0.0",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {

View File

@ -30,7 +30,7 @@ document.fonts.load('16pt "Jura"').then(() => {
const App = () => (
<Provider store={store}>
<StripeProvider apiKey="pk_test_Cb49tTqTXpzk7nEmlGzRrNJg00AU0aNZDj">
<StripeProvider apiKey="pk_live_fQGrL1uWww2ot8W1G7vTySAv004ygmnMXq">
<Mnml />
</StripeProvider>
</Provider>

View File

@ -8,18 +8,18 @@ function BitsBtn(args) {
} = args;
function subscribeClick() {
stripe.redirectToCheckout({
items: [{ plan: 'plan_Fhl9r7UdMadjGi', quantity: 1 }],
successUrl: 'http://localhost',
cancelUrl: 'http://localhost',
items: [{ plan: 'plan_Fjdtsd4i7aVLe1', quantity: 1 }],
successUrl: 'https://mnml.gg',
cancelUrl: 'https://mnml.gg',
clientReferenceId: account.id,
});
}
function bitsClick() {
stripe.redirectToCheckout({
items: [{ sku: 'sku_FHUfNEhWQaVDaT', quantity: 1 }],
successUrl: 'http://localhost',
cancelUrl: 'http://localhost',
items: [{ sku: 'sku_Fjdu7zOy3sLGc5', quantity: 1 }],
successUrl: 'https://mnml.gg',
cancelUrl: 'https://mnml.gg',
clientReferenceId: account.id,
});
}

View File

@ -6,7 +6,6 @@ upstream mnml_ws {
server 127.0.0.1:40055;
}
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;

View File

@ -1,6 +1,6 @@
{
"name": "mnml-ops",
"version": "1.0.0",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {

View File

@ -1,6 +1,6 @@
[package]
name = "mnml"
version = "1.0.0"
version = "1.0.1"
authors = ["ntr <ntr@smokestack.io>"]
[dependencies]