Skip to content

Commit

Permalink
Update issuer value for nitro and tempo id (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
web-kat authored Jul 1, 2024
1 parent 70f0eb6 commit d35de30
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/omniauth/strategies/nitro_id.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Strategies
class NitroId < BaseStrategy
option :name, "nitro_id"
option :discovery, true
option :issuer, "https://id.powerhrg.com/"
option :issuer, "https://id.powerhrg.com"
option :client_options, host: "id.powerhrg.com"
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/omniauth/strategies/tempo_id.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Strategies
class TempoId < BaseStrategy
option :name, "tempo_id"
option :discovery, true
option :issuer, "https://id.streamfinancial.io/"
option :issuer, "https://id.streamfinancial.io"
option :client_options, host: "id.streamfinancial.io"
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/omniauth/strategies/nitro_id_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
end

it "should have correct issuer" do
expect(subject.options.issuer).to eq "https://id.powerhrg.com/"
expect(subject.options.issuer).to eq "https://id.powerhrg.com"
end

it "should have the correct discovery setting" do
Expand Down
2 changes: 1 addition & 1 deletion spec/omniauth/strategies/tempo_id_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
end

it "should have correct issuer" do
expect(subject.options.issuer).to eq "https://id.streamfinancial.io/"
expect(subject.options.issuer).to eq "https://id.streamfinancial.io"
end

it "should have the correct discovery setting" do
Expand Down

0 comments on commit d35de30

Please sign in to comment.