-
-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from uasoft-indonesia/develop
Prepare release alpha.33
- Loading branch information
Showing
81 changed files
with
5,131 additions
and
1,475 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* | ||
* The view id of which you want to display data. | ||
*/ | ||
'view_id' => env('ANALYTICS_VIEW_ID'), | ||
|
||
/* | ||
* Path to the client secret json file. Take a look at the README of this package | ||
* to learn how to get this file. You can also pass the credentials as an array | ||
* instead of a file path. | ||
*/ | ||
'service_account_credentials_json' => storage_path('app/analytics/service-account-credentials.json'), | ||
|
||
/* | ||
* The amount of minutes the Google API responses will be cached. | ||
* If you set this to zero, the responses won't be cached at all. | ||
*/ | ||
'cache_lifetime_in_minutes' => 60 * 24, | ||
|
||
/* | ||
* Here you may configure the "store" that the underlying Google_Client will | ||
* use to store it's data. You may also add extra parameters that will | ||
* be passed on setCacheConfig (see docs for google-api-php-client). | ||
* | ||
* Optional parameters: "lifetime", "prefix" | ||
*/ | ||
'cache' => [ | ||
'store' => 'file', | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
return [ | ||
'activity_log', | ||
'data_rows', | ||
'data_types', | ||
'migrations', | ||
'password_resets', | ||
'menus', | ||
'menu_items', | ||
'users', | ||
'roles', | ||
'permissions', | ||
'configurations', | ||
'role_permissions', | ||
'user_roles', | ||
'user_verifications', | ||
'email_resets', | ||
'f_c_m_messages', | ||
'firebase_cloud_messages', | ||
]; |
Oops, something went wrong.