Short description and motivation.
configure the gem
# config/initializers/magic_link.rb
Magic::Link.configure do |config|
config.user_class = "Customer" # Default is User
config.email_from = "[email protected]"
config.token_expiration_hours = 6 # Default is 6
end
Add sign_in_token
and sign_in_token_sent_at
to your Devise class
mount the engine
mount Magic::Link::Engine, at: '/'
Now users can visit /magic_links/new
(which you can link to with magic_link.new_magic_link_path
) to enter their email and have a sign in
link sent to them via email. Tokens are cleared after use and expire after the
configured number of hours
Add this line to your application's Gemfile:
gem 'magic-link'
And then execute:
$ bundle
Or install it yourself as:
$ gem install magic-link
Contribution directions go here.
The gem is available as open source under the terms of the MIT License.