Skip to content

Commit 4267cd7

Browse files
committed
Add support for setting permissions
1 parent fc93940 commit 4267cd7

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

config/phinch.php

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
return [
44

5+
/*
6+
|--------------------------------------------------------------------------
7+
| Products
8+
|--------------------------------------------------------------------------
9+
|
10+
| Here you may specify the products your app needs access to.
11+
| All options are found in the Finch documentation:
12+
| https://developer.tryfinch.com/docs/reference/ZG9jOjMxOTg1NTI3-permissions
13+
|
14+
*/
15+
16+
'products' => [
17+
'company',
18+
'directory',
19+
'individual',
20+
'employment',
21+
'payment',
22+
'pay_statement',
23+
// 'benefits',
24+
],
25+
526
/*
627
|--------------------------------------------------------------------------
728
| Default API Version

src/ConnectFactory.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
namespace Phinch\Phinch;
44

5-
use Illuminate\Contracts\Container\Container;
6-
use Illuminate\Http\Request;
75
use Illuminate\Support\Facades\URL;
86
use Illuminate\Support\Str;
97
use Phinch\Connect\Connect;
@@ -13,10 +11,11 @@ class ConnectFactory
1311
{
1412
/**
1513
* @param array $config
14+
* @param array $products
1615
* @param bool $sandbox
1716
* @return Connect
1817
*/
19-
public static function make(array $config, bool $sandbox = false): Connect
18+
public static function make(array $config, array $products = [], bool $sandbox = false): Connect
2019
{
2120
if (!Str::startsWith($redirect = $config['connect_redirect'], 'http')) {
2221
$redirect = URL::to($redirect);
@@ -28,6 +27,8 @@ public static function make(array $config, bool $sandbox = false): Connect
2827
$redirect,
2928
);
3029

30+
$connect->products($products);
31+
3132
if ($sandbox) {
3233
$connect->inSandbox();
3334
}

src/PhinchServiceProvider.php

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ public function register()
2727
$this->app->singleton(Connect::class, function ($app) {
2828
return ConnectFactory::make(
2929
config('services.finch'),
30+
config('phinch.products'),
3031
config('phinch.sandbox')
3132
);
3233
});

0 commit comments

Comments
 (0)