Skip to content

Commit

Permalink
added payments with 3dSecure stripe, subscription activation, search
Browse files Browse the repository at this point in the history
  • Loading branch information
Radoslav Radev committed May 16, 2024
1 parent 6639291 commit 70c616d
Show file tree
Hide file tree
Showing 20 changed files with 2,560 additions and 86 deletions.
19 changes: 18 additions & 1 deletion Frontend/openvidstreamer-fe/configProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,21 @@ export const ApiServerBaseUrl = () =>{
throw new Error("Config not loaded");
}
return appSettings.ApiServerBaseUrl;
}
}


export const SubscriptionCost = () =>{

if (!appSettings) {
throw new Error("Config not loaded");
}
return appSettings.SubscriptionCost;
}

export const StripePublishableKey = () =>{

if (!appSettings) {
throw new Error("Config not loaded");
}
return appSettings.StripePublishableKey;
}
Loading

0 comments on commit 70c616d

Please sign in to comment.