Magic::Link

Short description and motivation.

Usage

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 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

Installation

Add this line to your application's Gemfile:

gem 'magic-link'

And then execute:

$ bundle

Or install it yourself as:

$ gem install magic-link

Contributing

Contribution directions go here.

License

The gem is available as open source under the terms of the MIT License.