Access Token Authenticatable
A devise module that provides something a little more full featured than token authenticatable.
Installation
Add this line to your application's Gemfile:
gem 'devise-access_token_authenticatable'
Assumptions
You have an AccessToken model that responds to the following methods:
-
invalidate!: Invalidates the token, making it unusable for authentication. -
fresh?: Whether or not the token can be used to authenticate the user. -
used!: Called whenever the token is used.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request