chrisreedio / socialment

Socialite OAuth Support for Filament
MIT License
73 stars 10 forks source link

✨ feat: Added support for custom scopes in social providers #58

Closed chrisreedio closed 2 months ago

chrisreedio commented 2 months ago

Can now add 'scopes' to a provider at registration time in the panel provider.

GitHub Example:

->registerProvider('github', 'fab-github', 'Github', [
    'read:user',
    'repo',
]),

TODO: Update the README to include the functionality after it passes some smoke testing.

chrisreedio commented 2 months ago

Looks like I fixed the tests too :D

Now I just need to add more (some?) tests.