forest_admin_agent 1.0.0.pre.beta.57 → 1.0.0.pre.beta.58

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: 8dca4529514a68e759c3cf45525ad7b685c27de0d75db47bec896d2f314c5964
4
- data.tar.gz: 610688be5b0dabfc8c37053913cf94d1c7e2d3949460d0a8d6563dfa841a5405
3
+ metadata.gz: 5a0b77447656edaafce539b7b920d4f0d1745733492810732cce08e1c1ddf134
4
+ data.tar.gz: 56978cbac39cf03beebb9581bd7a270daba8efa9a95606d59e3b02900570fc2d
5
5
  SHA512:
6
- metadata.gz: b08818d53e05288d8a1e81b6eb33b2d2c3ede89bd8ce51cc0a73481d3d7da3b6bb2b7292d2dfd63adcf1bab237b70ba9c7a8b6f53cc28117ce220cf466532b90
7
- data.tar.gz: 69780beab2f30e7ba1f9be093728cb7f77f61407d4d897d31f4dde45e5d110055af0c7f4d6335174f60a6046fc41593cad6e527ea56cd42580a816a1ec4d9c78
6
+ metadata.gz: 7eaa5a2ebaf0bd86877a4e4b5feddb04e91fa5cdc799d9a1138ec4a141e5a42d6706ba69353e18f0073b7de2a1ffd0fed91d8a14812998bcc36007980000c45b
7
+ data.tar.gz: baf4bbe36fce89338e52843ff2923105dd92478d00a6d8db580b514c51664145aad240c8e6407c03ca3b952a549827bd62ac4c2d6ef8ce3ebc17d8dd8c4da42e
@@ -30,7 +30,7 @@ module ForestAdminAgent
30
30
  routes = {}
31
31
  Facades::Container.datasource.collections.each_value do |collection|
32
32
  collection.schema[:actions].each_key do |action_name|
33
- routes.merge!(Action::Action.new(collection, action_name).routes)
33
+ routes.merge!(Action::Actions.new(collection, action_name).routes)
34
34
  end
35
35
  end
36
36
 
@@ -5,7 +5,7 @@ require 'jwt'
5
5
  module ForestAdminAgent
6
6
  module Routes
7
7
  module Action
8
- class Action < AbstractAuthenticatedRoute
8
+ class Actions < AbstractAuthenticatedRoute
9
9
  include ForestAdminAgent::Builder
10
10
  include ForestAdminAgent::Utils
11
11
  include ForestAdminDatasourceToolkit::Components::Query
@@ -5,9 +5,9 @@ module ForestAdminAgent
5
5
  module Utils
6
6
  module Schema
7
7
  class SchemaEmitter
8
- LIANA_NAME = "forest-rails"
8
+ LIANA_NAME = "agent-ruby"
9
9
 
10
- LIANA_VERSION = "1.0.0-beta.57"
10
+ LIANA_VERSION = "1.0.0-beta.58"
11
11
 
12
12
  def self.get_serialized_schema(datasource)
13
13
  schema_path = Facades::Container.cache(:schema_path)
@@ -1,3 +1,3 @@
1
1
  module ForestAdminAgent
2
- VERSION = "1.0.0-beta.57"
2
+ VERSION = "1.0.0-beta.58"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forest_admin_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre.beta.57
4
+ version: 1.0.0.pre.beta.58
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthieu
@@ -244,7 +244,7 @@ files:
244
244
  - lib/forest_admin_agent/routes/abstract_authenticated_route.rb
245
245
  - lib/forest_admin_agent/routes/abstract_related_route.rb
246
246
  - lib/forest_admin_agent/routes/abstract_route.rb
247
- - lib/forest_admin_agent/routes/action/action.rb
247
+ - lib/forest_admin_agent/routes/action/actions.rb
248
248
  - lib/forest_admin_agent/routes/charts/api_chart_collection.rb
249
249
  - lib/forest_admin_agent/routes/charts/api_chart_datasource.rb
250
250
  - lib/forest_admin_agent/routes/charts/charts.rb