mirror of
https://github.com/elyby/accounts.git
synced 2024-12-04 20:49:48 +05:30
18 lines
424 B
PHP
18 lines
424 B
PHP
<?php
|
|
return [
|
|
'admin-test1' => [
|
|
'id' => 1,
|
|
'owner_type' => 'user',
|
|
'owner_id' => 1,
|
|
'client_id' => 'test1',
|
|
'client_redirect_uri' => 'http://test1.net/oauth',
|
|
],
|
|
'banned-account-session' => [
|
|
'id' => 2,
|
|
'owner_type' => 'user',
|
|
'owner_id' => 10,
|
|
'client_id' => 'test1',
|
|
'client_redirect_uri' => 'http://test1.net/oauth',
|
|
],
|
|
];
|