すべてのNova関連のものの望遠鏡を無効にすることができますか? Novaでいくつかのクリックで、私の全体の望遠鏡は彼らの要求に満ちています。私はNova要求を気にしませんが、それらの要求の登録を無効にする方法を理解することはできません。
すべてのNova関連のものの望遠鏡を無効にすることができますか? Novaでいくつかのクリックで、私の全体の望遠鏡は彼らの要求に満ちています。私はNova要求を気にしませんが、それらの要求の登録を無効にする方法を理解することはできません。
How can I disable Telescope for all Nova related things? With some clicks in Nova, my whole Telescope is full of their requests. I don't care about Nova-requests, but can't figure out how to disable registering those requests.
</div望遠鏡の文書を見てみましたか?概要としてViewNovaゲートを除外するように見えるゲートウォッチャーがあります。
<事前> <コード> 'watchers' => [ WatchersGateWatcher::class => [ 'enabled' => env('TELESCOPE_GATE_WATCHER', true), 'ignore_abilities' => ['viewNova'], ], ... ],ゲートウォッチャーはデータとゲートとポリシーチェックの結果を記録します あなたのアプリケーションによって。特定の能力を除外したい場合 ウォッチャーによって記録されることから、あなたはそれらを特定することができます config / telescope.phpファイルのIGNORE_ABLITIESオプション:
https://laravel.com/docs/6.x/teLescope. #ゲートウォッチャー
Did you take a look at the telescope documentation there is a gate watcher that seems to exclude a viewNova gate as an example, maybe that would help clear some of the queries.
The gate watcher records the data and result of gate and policy checks by your application. If you would like to exclude certain abilities from being recorded by the watcher, you may specify those in the ignore_abilities option in your config/telescope.php file:
'watchers' => [ WatchersGateWatcher::class => [ 'enabled' => env('TELESCOPE_GATE_WATCHER', true), 'ignore_abilities' => ['viewNova'], ], ... ],
https://laravel.com/docs/6.x/telescope#gate-watcher
</div© 2022 cndgn.com All Rights Reserved. Q&Aハウス 全著作権所有