omniauth-infinum_azure 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59659de2d696197818088fac98f3f33328d2a3f161da9ca9a546cf941381b7af
4
- data.tar.gz: 96650ce1e8d6f71727a05501b2b7f227cd733f1457987f51b0069d6f17568a82
3
+ metadata.gz: 8c0cfbd150059fb6878bc374878fc0b70586769f8d774e437164fa019b64827c
4
+ data.tar.gz: 9ee1bf51c4d0e2778129da93dbfbdfb828cf67ebc559ac66f6c4594145af1891
5
5
  SHA512:
6
- metadata.gz: 162d6f73f68f04357842effb9d13f0a25ae1afd32537dbc57cd9bf0ba24a84a7e88b1c114989c9c6bb40b7c57425c02cfa97bf957916a9016abbe5e5100f1394
7
- data.tar.gz: 2366b8044627f5f011e49e70baf4c9db42c2b973f6c41e630f60e156ddf517fba8364a586cbf1d28949c3a7fc5b7a39849a4a346723170a5f9fa646af51c24af
6
+ metadata.gz: 91cc81adea8aa691c1da4f68d2479eb23525bf7b51ba86b83fed10d228f9eba5772de39b0f3446970c869fb04e9c2c06c7da5115bc0083f8c88eb2725536b168
7
+ data.tar.gz: 687428f5c95a1e8743770bdb84af6666fbb81beb3538b5de04b0edeff39c6898b99295aa2dc528612c0f00c04a9f36d34626109151c5a8751c3557cdfdef9a03
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.4] - 2023-03-14
4
+
5
+ - Moving options to client options
6
+
3
7
  ## [0.1.3] - 2023-03-14
4
8
 
5
9
  - Finishing setup
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-infinum_azure (0.1.3)
4
+ omniauth-infinum_azure (0.1.4)
5
5
  omniauth-oauth2
6
6
 
7
7
  GEM
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Omniauth
4
4
  module InfinumAzure
5
- VERSION = '0.1.3'
5
+ VERSION = '0.1.4'
6
6
  end
7
7
  end
@@ -4,8 +4,10 @@ module OmniAuth
4
4
  module Strategies
5
5
  class InfinumAzure < OmniAuth::Strategies::OAuth2
6
6
  option :name, 'infinum_azure'
7
- option :policy, 'B2C_1_sign_in'
8
- option :scope, 'openid'
7
+
8
+ option :client_options, tenant: 'infinumtest'
9
+ option :client_options, policy: 'B2C_1_sign_in'
10
+ option :client_options, scope: 'openid'
9
11
 
10
12
  def base_azure_url
11
13
  "https://#{options.tenant}.b2clogin.com/#{options.tenant}.onmicrosoft.com/#{options.policy}/oauth2/v2.0"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-infinum_azure
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marko Ćilimković