Skip to content

dvanderbeek/magic-link

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 = "test@yourapp.com"
  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

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published