* add api enpoints for adding, removing, updating user to workspace and leaving workspace * feat: updates client site workspace settings * refactor and add domain setting ui in modal * move workspace user functionality to its own component * adds tests * fix linting * updates select input to FlatSelectInput * moves workspace user role edit to seperated component * move user adding to its own component * adds check to usure users exist before checking is admin * fix loading users * feat: invite user to team functionality * fix token coulmn * fix self host mode changes * tests for user invite * Refactor back-end * Rename variables * Improve some styling elements + refactor workspace settings * More styling * More UI polishing * More UI fixes * PHP linting * Implemented most of the logic for team-functionnality * Fix user avatar URL * WIP remove users on cancellation * Finished pricing for team functionality * Fix tests * Fix linting * Added pricing_enabled helper * Fix pricing_enabled shortcut * Debug CI * Disable pricing when testing --------- Co-authored-by: LL-Etiane <lukongleinyuyetiane@gmail.com> Co-authored-by: Lukong Etiane <83535251+LL-Etiane@users.noreply.github.com> Co-authored-by: Julien Nahum <julien@nahum.net>
43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'production' => [
|
|
'default' => [
|
|
'product_id' => env('STRIPE_PROD_DEFAULT_PRODUCT_ID'),
|
|
'pricing' => [
|
|
'monthly' => env('STRIPE_PROD_DEFAULT_PRICING_MONTHLY'),
|
|
'yearly' => env('STRIPE_PROD_DEFAULT_PRICING_YEARLY'),
|
|
],
|
|
],
|
|
|
|
'extra_user' => [
|
|
'product_id' => env('STRIPE_PROD_EXTRA_USER_PRODUCT_ID'),
|
|
'pricing' => [
|
|
'monthly' => env('STRIPE_PROD_EXTRA_USER_PRICING_MONTHLY'),
|
|
'yearly' => env('STRIPE_PROD_EXTRA_USER_PRICING_YEARLY'),
|
|
],
|
|
]
|
|
],
|
|
|
|
'test' => [
|
|
'default' => [
|
|
'product_id' => env('STRIPE_TEST_DEFAULT_PRODUCT_ID'),
|
|
'pricing' => [
|
|
'monthly' => env('STRIPE_TEST_DEFAULT_PRICING_MONTHLY'),
|
|
'yearly' => env('STRIPE_TEST_DEFAULT_PRICING_YEARLY'),
|
|
],
|
|
],
|
|
|
|
'extra_user' => [
|
|
'product_id' => env('STRIPE_TEST_EXTRA_USER_PRODUCT_ID'),
|
|
'pricing' => [
|
|
'monthly' => env('STRIPE_TEST_EXTRA_USER_PRICING_MONTHLY'),
|
|
'yearly' => env('STRIPE_TEST_EXTRA_USER_PRICING_YEARLY'),
|
|
],
|
|
]
|
|
],
|
|
|
|
'discount_coupon_id' => env('STRIPE_DISCOUNT_COUPON_ID', null),
|
|
];
|