tramway-api 1.8.7 → 1.8.7.1

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: 7460f1d97abb9ea3e24e8cf6b5e3bb81fece303364dd906f4a42617ae92ed08b
4
- data.tar.gz: 772e32b2c3c73a501b49fb2a166d99256558e221f71254d47094d6ec2d8d9b10
3
+ metadata.gz: c1faafafdc03424f40bb3675cca9cd65a974c0fcdd12e5aea93a9e938c4ac780
4
+ data.tar.gz: a14a18d4b13ed34ae78e24efc07dd6a47f67612633086b5e6988f13f6286a5a8
5
5
  SHA512:
6
- metadata.gz: d706c1f376c0300a3c8ae6b2a7af4e3ec987b67960301d6aa52a5d69d4475c6e2910d854d91671a5584aebeffed2f3560780d55cd7afc6fb3a13c05041c42987
7
- data.tar.gz: c3e35375b7597d57cc2d96cb6cc37cfd1084327afb23a1931d9a19ca93314b60f8d5f24335f7747f7fdf388860c28213c7c5895c914bddd1b72b748da853278b
6
+ metadata.gz: e1f1524a1819cf04ec8776dcbbd6751395c0bdf7197fd01c5515e8be13ae1e0c0865acd9d6a233d073a3b242d7a0566d87d5921a42bfad0a3646b75d5412f620
7
+ data.tar.gz: 203d0b68c69a8767c51e9937fccbc0a5bebe3c6e9b95c8db1c12a05970f3314fc6ae2aaf6ca84501cd7fab2856bc483fcff0e495dd8e15133ed5b130db2e14bf
@@ -6,37 +6,6 @@ module Tramway
6
6
  include ::Knock::Authenticable
7
7
  protect_from_forgery with: :null_session, if: proc { |c| c.request.format == 'application/json' }
8
8
  rescue_from ActiveRecord::RecordNotFound, with: :not_found if Rails.env.production?
9
- before_action :load_application
10
-
11
- def load_application
12
- if engine_loaded(request).present?
13
- build_application_with_engine engine_loaded request
14
- elsif application_class(request).present?
15
- @application = application_class(request).camelize.constantize.first
16
- else
17
- @application = application_object request
18
- end
19
- end
20
-
21
- private
22
-
23
- def build_application_with_engine(engine_loaded)
24
- engine_module = "::Tramway::#{engine_loaded.camelize}".constantize
25
- @application = "#{engine_module}::#{engine_module.application.to_s.camelize}".constantize.first
26
- @application_engine = engine_loaded
27
- end
28
-
29
- def application_class(request)
30
- Constraints::DomainConstraint.new(request.domain).application_class
31
- end
32
-
33
- def engine_loaded(request)
34
- Constraints::DomainConstraint.new(request.domain).engine_loaded
35
- end
36
-
37
- def application_object(request)
38
- Constraints::DomainConstraint.new(request.domain).application_object
39
- end
40
9
 
41
10
  def not_found
42
11
  render json: { data: [] }, status: :not_found
@@ -89,7 +89,6 @@ module Tramway
89
89
  end
90
90
 
91
91
  def authenticate_user_if_needed
92
- load_application
93
92
  action_is_open = Tramway::Api.action_is_available(
94
93
  action: action_name.to_sym,
95
94
  project: (@application_engine || application_name),
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tramway
4
4
  module Api
5
- VERSION = '1.8.7'
5
+ VERSION = '1.8.7.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tramway-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.7
4
+ version: 1.8.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Kalashnikov