Laravel AT Protocol Client (alpha & unstable)
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update docs with public generator paths

+3 -1
+3 -1
docs/extensions.md
··· 41 41 php artisan make:atp-request TrendingClient --domain=bsky --public 42 42 ``` 43 43 44 - The generated files are placed in `app/Services/Clients/` (domain clients) and `app/Services/Clients/Requests/` (request clients). You can customize these paths in `config/client.php`: 44 + The generated files are placed in configurable directories. You can customize these paths in `config/client.php`: 45 45 46 46 ```php 47 47 'generators' => [ 48 48 'client_path' => 'app/Services/Clients', 49 + 'client_public_path' => 'app/Services/Clients/Public', 49 50 'request_path' => 'app/Services/Clients/Requests', 51 + 'request_public_path' => 'app/Services/Clients/Public/Requests', 50 52 ], 51 53 ``` 52 54