Skip to content

Commit 32abc34

Browse files
committed
bump
1 parent 66d6fcf commit 32abc34

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

OpenFlow/src/LoginProvider.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,8 @@ export class LoginProvider {
416416
validate_user_form: Config.validate_user_form,
417417
supports_watch: Config.supports_watch,
418418
nodered_images: Config.nodered_images,
419-
amqp_enabled_exchange: Config.amqp_enabled_exchange
419+
amqp_enabled_exchange: Config.amqp_enabled_exchange,
420+
multi_tenant: Config.multi_tenant
420421
}
421422
res.end(JSON.stringify(res2));
422423
} catch (error) {

OpenFlow/src/Messages/Message.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3031,7 +3031,7 @@ export class Message {
30313031
const billing: Billing = billings[0];
30323032
if (NoderedUtil.IsNullEmpty(billing.stripeid)) throw new Error("Need a stripe customer in order to cancel plan");
30333033
const customer: stripe_customer = await this.Stripe<stripe_customer>("GET", "customers", billing.stripeid, null, null);
3034-
if (customer == null) throw new Error("Failed locating stripe customer at stribe");
3034+
if (customer == null) throw new Error("Failed locating stripe customer at stripe");
30353035

30363036

30373037
let subscription: stripe_subscription = null;
@@ -3090,7 +3090,7 @@ export class Message {
30903090
const billing: Billing = billings[0];
30913091
if (NoderedUtil.IsNullEmpty(billing.stripeid)) throw new Error("Need a stripe customer in order to add plan");
30923092
const customer: stripe_customer = await this.Stripe<stripe_customer>("GET", "customers", billing.stripeid, null, null);
3093-
if (customer == null) throw new Error("Failed locating stripe customer at stribe");
3093+
if (customer == null) throw new Error("Failed locating stripe customer at stripe");
30943094

30953095
let subscription: stripe_subscription = null;
30963096
let subscription_item: stripe_subscription_item = null;

OpenFlow/src/public/WebSocketClientService.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export class WebSocketClientService {
3434
this.websocket_package_size = data.websocket_package_size;
3535
this.stripe_api_key = data.stripe_api_key;
3636
this.validate_user_form = data.validate_user_form;
37+
this.multi_tenant = data.multi_tenant;
3738

3839
this.nodered_images = data.nodered_images;
3940

@@ -158,6 +159,7 @@ export class WebSocketClientService {
158159
public stripe_api_key: string = "";
159160
public validate_user_form: string = "";
160161
public nodered_images: nodered_image[];
162+
public multi_tenant: boolean;
161163

162164
getJSON(url: string, callback: any): void {
163165
const xhr: XMLHttpRequest = new XMLHttpRequest();

0 commit comments

Comments
 (0)