booth 0.0.9 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 88710c6c007c94f19ab956a66dc1592665f9de10f786ef5cd5eb8fb2b386fbee
4
- data.tar.gz: 70f45c4a38f515c779ebda2705c142df7ca8ffb1279d5c5f49c2cf90fdacebfb
3
+ metadata.gz: '0280f442ad970037bc59f8ec9f200b78638e3b32fc5f3135623d7cd69a8b8afc'
4
+ data.tar.gz: f0f98d84ebd59fac0ecd212d072cbe8d5960570af0ff99e1c723c4d1d74dc3f7
5
5
  SHA512:
6
- metadata.gz: 1d08a6b4a1fa1f7b520952777509041f46232b31152c281d0851dbbbf32296fb84b8f4b62883ecb0e657800edbaec3e7a9fd12af09d753e65090e1dd505d355a
7
- data.tar.gz: f5273c88aab4cb7425755b58f2e0eade47307748ae9fbbeae0e0fa0ab2ea8cff24e668dc3278bb83adf701ee1fa865780bd08e284c7a34366d079b745c4b6dea
6
+ metadata.gz: 5315f7ccaddb530588cbdfe5c0dd57919240e62f1378bfd54f66b96acf93c8e9cbdd31fed75bcecbca23a39fea33356dc486c4e55314a21e8248551eb819ea0a
7
+ data.tar.gz: 5dbdb5999e95666b64acea7cb403d7c7dd93919929a9fb89ae9b7c42d5206a40c94e4f8226cb43395f835dde5561f37c82fc003dd551f8cef81d84bee974aa10
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # main
2
2
 
3
+ # 0.0.10
4
+
5
+ - Make Adminland.start_incognito work cross-domain
6
+
3
7
  # 0.0.9
4
8
 
5
9
  - Implement Adminland.start_incognito
@@ -20,7 +20,6 @@ module Booth
20
20
  def call
21
21
  do_check_impersonator_logged_in
22
22
  .on_success { do_find_target_credential }
23
- .on_success { do_compare_domain }
24
23
  .on_success { do_compare_scope }
25
24
  .on_success { do_create_session }
26
25
  .on_success { do_revoke_impersonator_if_same_scope }
@@ -55,13 +54,6 @@ module Booth
55
54
  end
56
55
  end
57
56
 
58
- def do_compare_domain
59
- ::Booth::Comparisons::Domain.call(
60
- expected: target_credential.domain,
61
- actual: request.host,
62
- )
63
- end
64
-
65
57
  def do_compare_scope
66
58
  ::Booth::Comparisons::Scope.call(
67
59
  expected: target_credential.scope,
data/lib/booth/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Booth
4
- VERSION = '0.0.9'
4
+ VERSION = '0.0.10'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: booth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - halo