Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jgraichen/omniauth-multipassword
OmniAuth strategy for authentication using different password strategies at once.
https://github.com/jgraichen/omniauth-multipassword
authentication omniauth omniauth-strategy password ruby
Last synced: 2 months ago
JSON representation
OmniAuth strategy for authentication using different password strategies at once.
- Host: GitHub
- URL: https://github.com/jgraichen/omniauth-multipassword
- Owner: jgraichen
- License: mit
- Created: 2012-04-21T11:10:08.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-09-16T03:46:39.000Z (3 months ago)
- Last Synced: 2024-09-16T05:15:43.842Z (3 months ago)
- Topics: authentication, omniauth, omniauth-strategy, password, ruby
- Language: Ruby
- Size: 42 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Omniauth::Multipassword
[![Build Status](https://travis-ci.org/jgraichen/omniauth-multipassword.svg?branch=master)](https://travis-ci.org/jgraichen/omniauth-multipassword)
[![Code Climate](https://codeclimate.com/github/jgraichen/omniauth-multipassword/badges/gpa.svg)](https://codeclimate.com/github/jgraichen/omniauth-multipassword)
[![Test Coverage](https://codeclimate.com/github/jgraichen/omniauth-multipassword/badges/coverage.svg)](https://codeclimate.com/github/jgraichen/omniauth-multipassword/coverage)**omniauth-multipassword** is a [OmniAuth](https://github.com/intridea/omniauth)
strategy that allows to authenticate again different password strategies at once.## Installation
Add this line to your application's Gemfile:
gem 'omniauth-multipassword'
Add multipassword compatible omniauth strategies you want to use:
gem 'omniauth-internal'
gem 'omniauth-kerberos'And then execute:
$ bundle
Or install it yourself as:
$ gem install omniauth-multipassword
## Usage
```ruby
Rails.application.config.middleware.use OmniAuth::Strategies::MultiPassword, fields: [ :auth_key ] do |mp|
mp.authenticator :internal
mp.authenticator :kerberos
end
```## Options
** title **
The title text shown on default login form.
(default: `"Restricted Access"`)** fields **
The request parameter names to fetch username and password.
(default: `[ "username", "password" ]`)### Compatible Strategies
* [omniauth-internal](https://github.com/jgraichen/omniauth-internal)
* [omniauth-kerberos](https://github.com/jgraichen/omniauth-kerberos)## License
[MIT License](http://www.opensource.org/licenses/mit-license.php)
Copyright (c) 2012, Jan Graichen