forked from OpenNeo/impress
Emi Matchu
f483722af4
In this change, we wire up a new NeoPass OAuth2 strategy for OmniAuth, and hook up the "Log in with NeoPass" button to use it! The authentication currently fails with `invalid_credentials`, and shows the `owo` response we hardcoded into the NeoPass server's token response. We need to finally follow up on the little `TODO` written in there!
24 lines
911 B
Ruby
24 lines
911 B
Ruby
# Be sure to restart your server when you modify this file.
|
|
|
|
# Add new inflection rules using the following format. Inflections
|
|
# are locale specific, and you may define rules for as many different
|
|
# locales as you wish. All of these examples are active by default:
|
|
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
# inflect.plural /^(ox)$/i, "\\1en"
|
|
# inflect.singular /^(ox)en/i, "\\1"
|
|
# inflect.irregular "person", "people"
|
|
# inflect.uncountable %w( fish sheep )
|
|
# end
|
|
|
|
# These inflection rules are supported but not enabled by default:
|
|
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
# inflect.acronym "RESTful"
|
|
# end
|
|
|
|
ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
# Teach Zeitwerk that `RocketAMF` is what to expect in `lib/rocketamf`.
|
|
inflect.acronym "RocketAMF"
|
|
|
|
# Teach Zeitwerk that "NeoPass" is what to expect in `neopass.rb`.
|
|
inflect.acronym "NeoPass"
|
|
end
|