ntq_tools 0.4.4 → 0.4.6
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 +4 -4
- data/lib/generators/ntq_tools/graphql_scaffold_generator.rb +10 -4
- data/lib/ntq_tools/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c27346acfab847af2923c27896c8b660fa606417f253685e53623e341a4ffdd
|
4
|
+
data.tar.gz: 80b98435b7ce0af962ce9822481171f2287863351f4b0c2d8f9b5bcd889854c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d173324ffd44ed642f1132ddc3906e3f0c2b11da57a7da0a27164601010687a1fe70520a2ecae12350fe14ab5de97e93188cc9422556f1a69ac396c8dc618d0
|
7
|
+
data.tar.gz: dc4ea7bf49393e3cb7880016724c9ce5dfe16b92e8ce90b2ebe25ae7d82d6519d0bbb3c4527fc233b54a5a907cb8ec96fb2e0a6ce18a9e8b5ce312bb60e30e78
|
@@ -27,7 +27,7 @@ module NtqTools
|
|
27
27
|
definition << "field :#{k}, Boolean"
|
28
28
|
when :decimal
|
29
29
|
definition << "field :#{k}, Float"
|
30
|
-
when :date, :datetime
|
30
|
+
when :date, :datetime, :time
|
31
31
|
definition << "field :#{k}, Types::TimeType"
|
32
32
|
else
|
33
33
|
raise "Type non défini: #{v.type.inspect}"
|
@@ -80,6 +80,10 @@ module Types
|
|
80
80
|
module #{plural_name.camelcase}
|
81
81
|
class #{singular_name.camelcase}Type < BaseObject
|
82
82
|
include Resolvers::TimestampsFields
|
83
|
+
include Resolvers::AuthorizationFields
|
84
|
+
|
85
|
+
# authorize_resource
|
86
|
+
# authorize_attributes
|
83
87
|
|
84
88
|
#{definition.join('
|
85
89
|
')}
|
@@ -233,7 +237,7 @@ FILE
|
|
233
237
|
FILE
|
234
238
|
|
235
239
|
if defined?(Interactor)
|
236
|
-
create_file "app/interactors/#{plural_name}/search_#{
|
240
|
+
create_file "app/interactors/#{plural_name}/search_#{plural_name}.rb", <<-FILE
|
237
241
|
module #{context_name}
|
238
242
|
class Search#{class_name}
|
239
243
|
include Interactor::Organizer
|
@@ -243,7 +247,7 @@ module #{context_name}
|
|
243
247
|
end
|
244
248
|
FILE
|
245
249
|
|
246
|
-
create_file "app/interactors/#{plural_name}/get_#{
|
250
|
+
create_file "app/interactors/#{plural_name}/get_#{plural_name}.rb", <<-FILE
|
247
251
|
module #{context_name}
|
248
252
|
class Get#{class_name}
|
249
253
|
include Interactor
|
@@ -279,7 +283,9 @@ end
|
|
279
283
|
argument :id, ID, required: true
|
280
284
|
end
|
281
285
|
def #{singular_name}(id:)
|
282
|
-
::#{singular_name.camelcase}.find(id)
|
286
|
+
record = ::#{singular_name.camelcase}.find(id)
|
287
|
+
context[:current_user].authorize!(:show, record) if context[:current_user]
|
288
|
+
record
|
283
289
|
end\n
|
284
290
|
FILE
|
285
291
|
end
|
data/lib/ntq_tools/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ntq_tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|