{"id":16956978,"url":"https://github.com/jgraichen/omniauth-multipassword","last_synced_at":"2025-09-03T02:11:05.683Z","repository":{"id":3072424,"uuid":"4095556","full_name":"jgraichen/omniauth-multipassword","owner":"jgraichen","description":"OmniAuth strategy for authentication using different password strategies at once.","archived":false,"fork":false,"pushed_at":"2025-08-25T05:41:12.000Z","size":61,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-30T21:06:24.508Z","etag":null,"topics":["authentication","omniauth","omniauth-strategy","password","ruby"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jgraichen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2012-04-21T11:10:08.000Z","updated_at":"2025-08-25T05:41:15.000Z","dependencies_parsed_at":"2024-07-20T13:43:55.483Z","dependency_job_id":"4fae0c53-67cf-4c77-8ece-82cd33ffa763","html_url":"https://github.com/jgraichen/omniauth-multipassword","commit_stats":{"total_commits":22,"total_committers":5,"mean_commits":4.4,"dds":0.5454545454545454,"last_synced_commit":"7f7e94e4df30171fa1d8dd559e7cc89c0040b884"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/jgraichen/omniauth-multipassword","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraichen%2Fomniauth-multipassword","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraichen%2Fomniauth-multipassword/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraichen%2Fomniauth-multipassword/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraichen%2Fomniauth-multipassword/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jgraichen","download_url":"https://codeload.github.com/jgraichen/omniauth-multipassword/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgraichen%2Fomniauth-multipassword/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272907255,"owners_count":25013232,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["authentication","omniauth","omniauth-strategy","password","ruby"],"created_at":"2024-10-13T22:16:32.154Z","updated_at":"2025-09-03T02:11:05.664Z","avatar_url":"https://github.com/jgraichen.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Omniauth::Multipassword\n\n[![Gem Version](https://img.shields.io/gem/v/omniauth-multipassword?logo=ruby)](https://rubygems.org/gems/omniauth-multipassword)\n[![Workflow Status](https://img.shields.io/github/actions/workflow/status/jgraichen/omniauth-multipassword/test.yml?logo=github)](https://github.com/jgraichen/omniauth-multipassword/actions)\n[![Test Coverage](https://img.shields.io/codecov/c/github/jgraichen/omniauth-multipassword?logo=codecov\u0026logoColor=white)](https://app.codecov.io/gh/jgraichen/omniauth-multipassword)\n[![Code Climate](https://codeclimate.com/github/jgraichen/omniauth-multipassword/badges/gpa.svg)](https://codeclimate.com/github/jgraichen/omniauth-multipassword)\n\n**omniauth-multipassword** is a [OmniAuth](https://github.com/intridea/omniauth)\nstrategy that allows to authenticate again different password strategies at once.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'omniauth-multipassword'\n```\n\nAdd multipassword compatible omniauth strategies you want to use:\n\n```ruby\ngem 'omniauth-internal'\ngem 'omniauth-kerberos'\n```\n\nAnd then execute:\n\n```console\nbundle\n```\n\nOr install it yourself as:\n\n```console\ngem install omniauth-multipassword\n```\n\n## Usage\n\n```ruby\nRails.application.config.middleware.use OmniAuth::Strategies::MultiPassword, fields: [ :auth_key ] do |mp|\n  mp.authenticator :internal\n  mp.authenticator :kerberos\nend\n```\n\n## Options\n\n\u003cdl\u003e\n  \u003cdt\u003e\u003ccode\u003etitle\u003c/code\u003e\u003c/dt\u003e\n  \u003cdd\u003e\n\nThe title text shown on default login form.\n(default: `\"Restricted Access\"`)\n\n  \u003c/dd\u003e\n  \u003cdt\u003e\u003ccode\u003efields\u003c/code\u003e\u003c/dt\u003e\n  \u003cdd\u003e\n\nThe request parameter names to fetch username and password.\n(default: `[ \"username\", \"password\" ]`)\n\n  \u003c/dd\u003e\n\u003c/dl\u003e\n\n### Compatible Strategies\n\n- [omniauth-internal](https://github.com/jgraichen/omniauth-internal)\n- [omniauth-kerberos](https://github.com/jgraichen/omniauth-kerberos)\n\n## License\n\n[MIT License](http://www.opensource.org/licenses/mit-license.php)\n\nCopyright © 2012, Jan Graichen\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjgraichen%2Fomniauth-multipassword","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjgraichen%2Fomniauth-multipassword","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjgraichen%2Fomniauth-multipassword/lists"}