Low commit activity in last 3 years
No release in over a year
One Time Password plugin for the Trestle admin framework
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 2.0
~> 0.9.0
~> 0.4.0
 Project Readme

Trestle Authentication One Time Password (trestle-auth-otp)

Getting Started

These instructions assume you have a working Trestle application. To integrate trestle-auth-otp, first add it to your application's Gemfile:

gem 'trestle-auth-otp'

Run bundle install, and then run the install generator to set up configuration options, user model and user admin resource.

$ rails generate trestle:auth:install
$ rails generate trestle:auth:otp:install
$ rake db:migrate

Then create an initial admin user from the rails console:

$ rails console
> Administrator.create(email: "admin@example.com", password: "password", first_name: "Admin", last_name: "User")

To update existing records

$ rails console
> Administrator.find_each { |a| a.update_attribute(:otp_secret_key, Administrator.otp_random_secret) }

After restarting your Rails server, any attempt to access a page within your admin will redirect you to the login page.

OTP must be enabled in the Administrator form for every record.

Notes

This gem is based on the work done by Sam Pohlenz on trestle-auth

License

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