You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.2KB

  1. <?php
  2. use App\Kintone\KintoneConfiguration;
  3. return [
  4. /*
  5. |--------------------------------------------------------------------------
  6. | ホスト定義
  7. |--------------------------------------------------------------------------
  8. |
  9. | キントーンAPIのホストを定義
  10. */
  11. 'host' => env("KINTONE_HOST", ""),
  12. /*
  13. |--------------------------------------------------------------------------
  14. | アプリケーション定義
  15. |--------------------------------------------------------------------------
  16. |
  17. | キントーンアプリのAPIトークンとアプリIDを定義
  18. | envには"{API_TOKEN},{APP_ID}"のカンマ区切りの文字列でアプリごとに定義する
  19. |
  20. */
  21. 'applications' => [
  22. ...App\Kintone\Models\Customer::setConfig(),
  23. ...App\Kintone\Models\Parking::setConfig(),
  24. ...App\Kintone\Models\ParkingRoom::setConfig(),
  25. ...App\Kintone\Models\SeasonTicketContract::setConfig(),
  26. ...App\Kintone\Models\PaymentPlan::setConfig(),
  27. ...App\Kintone\Models\GeneralApplication::setConfig(),
  28. ...App\Kintone\Models\FAQ::setConfig(),
  29. ...App\Kintone\Models\Ask::setConfig(),
  30. ],
  31. ];