sorcery icon indicating copy to clipboard operation
sorcery copied to clipboard

Magical Authentication

Results 78 sorcery issues
Sort by recently updated
recently updated
newest added

https://github.com/Sorcery/sorcery/blob/master/spec/active_record/user_brute_force_protection_spec.rb https://github.com/Sorcery/sorcery/blob/master/spec/shared_examples/user_brute_force_protection_shared_examples.rb Change `rails_3_brute_force_protection_model` to `rails_brute_force_protection_model`.

https://github.com/Sorcery/sorcery/blob/master/spec/active_record/user_activity_logging_spec.rb https://github.com/Sorcery/sorcery/blob/master/spec/shared_examples/user_activity_logging_shared_examples.rb `rails_3_activity_logging_model` should probably become just `rails_activity_logging_model`.

https://github.com/Sorcery/sorcery/blob/master/spec/active_record/user_activation_spec.rb https://github.com/Sorcery/sorcery/blob/master/spec/shared_examples/user_activation_shared_examples.rb Rails 3 activation model? Maybe we want to make this just a "rails activation model"

+ related with different solution: https://github.com/Sorcery/sorcery/pull/304 ## The Problem + if an app uses both the `session_timeout` as well as the `remember_me` submodule the following can happen: + even if...

### Configuration - Sorcery Version: `0.16.4` - Ruby Version: `3.1.2` - Framework: `rails-7` - Platform: `linux-64_86` ### Expected Behavior Sorcery should work out of the box with an API-only rails...

bug

This patch add support for Google One Tap sign-in. Display Google One Tap https://developers.google.com/identity/gsi/web/guides/display-google-one-tap?hl=en Example: https://github.com/asip/easel-back/blob/main/app/controllers/oauths_controller.rb https://github.com/asip/easel-back/blob/main/app/controllers/api/v1/oauth/sessions_controller.rb https://github.com/asip/easel-back/blob/main/lib/sorcery/controller/submodules/external.rb - [x] Description of changes - [x] Update to CHANGELOG.md with short...

Hey, tried adding this apple adapter. The apple flow is a bit different compared to other implementations: - Apple expects a nonce, that can later be verified - The secret...

enhancement

### Configuration - Sorcery Version: `0.16.5` - Ruby Version: `3.1.2` - Framework: `Rails 6.1.6` - Platform: `MacOS` Sorcery does not have any lazy loading - everything is always loaded when...

implemented in v1

I have made fix, any imrovements are welcomed, cheers. #346

While writing tests for v1, I accidentally used `find_by` instead of `load_from`, which had me scratching my head as to why the test was finding the record even when set...