bullet_train-super_scaffolding 1.2.22 → 1.2.24
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/api/v1/open_api/scaffolding/absolutely_abstract/creative_concepts/_paths.yaml.erb +93 -0
- data/app/views/api/v1/scaffolding/absolutely_abstract/creative_concepts/_creative_concept.json.jbuilder +1 -0
- data/lib/bullet_train/super_scaffolding/version.rb +1 -1
- metadata +4 -4
- data/app/views/api/v1/open_api/scaffolding/completely_concrete/tangible_things/_components.yaml.erb +0 -32
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44a9369ea0000eef01eee082a9b73655325a43167be28a51352a4841ecceef36
|
4
|
+
data.tar.gz: b959244d160b4ec8379f8b18e72e988692855dd6c498e1c6421e761ca9a58e2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84e31edef419d8823fb05118b04ca19176096c61f75cecda63f6118d28e36e73c3a4e78e632e0ffe623bc23e77567ab3d751aa46233ec46daef4e5561e969079
|
7
|
+
data.tar.gz: da74218bcc3b6fbc74974f69890bd312081687bc7db43bcce3376a892c007529d4dbd75a4056bd7e2f697576c07fd3630255c2b4aa16310ededff9abe361554a
|
data/app/views/api/v1/open_api/scaffolding/absolutely_abstract/creative_concepts/_paths.yaml.erb
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
/teams/{team_id}/scaffolding/absolutely_abstract/creative_concepts:
|
2
|
+
get:
|
3
|
+
tags:
|
4
|
+
- "Scaffolding/Absolutely Abstract/Creative Concept"
|
5
|
+
summary: "List Creative Concept"
|
6
|
+
operationId: listScaffoldingAbsolutelyAbstractCreativeConcepts
|
7
|
+
parameters:
|
8
|
+
- name: team_id
|
9
|
+
in: path
|
10
|
+
required: true
|
11
|
+
schema:
|
12
|
+
type: string
|
13
|
+
responses:
|
14
|
+
"404":
|
15
|
+
description: "Not Found"
|
16
|
+
"200":
|
17
|
+
description: "OK"
|
18
|
+
content:
|
19
|
+
application/json:
|
20
|
+
schema:
|
21
|
+
type: object
|
22
|
+
properties:
|
23
|
+
data:
|
24
|
+
type: array
|
25
|
+
items:
|
26
|
+
$ref: "#/components/schemas/ScaffoldingAbsolutelyAbstractCreativeConceptAttributes"
|
27
|
+
has_more:
|
28
|
+
type: boolean
|
29
|
+
post:
|
30
|
+
tags:
|
31
|
+
- "Scaffolding/Absolutely Abstract/Creative Concept"
|
32
|
+
summary: "Create Creative Concept"
|
33
|
+
operationId: createScaffoldingAbsolutelyAbstractCreativeConcepts
|
34
|
+
parameters:
|
35
|
+
- name: team_id
|
36
|
+
in: path
|
37
|
+
required: true
|
38
|
+
schema:
|
39
|
+
type: string
|
40
|
+
responses:
|
41
|
+
"404":
|
42
|
+
description: "Not Found"
|
43
|
+
"201":
|
44
|
+
description: "Created"
|
45
|
+
content:
|
46
|
+
application/json:
|
47
|
+
schema:
|
48
|
+
$ref: "#/components/schemas/ScaffoldingAbsolutelyAbstractCreativeConceptParameters"
|
49
|
+
/scaffolding/absolutely_abstract/creative_concepts/{id}:
|
50
|
+
get:
|
51
|
+
tags:
|
52
|
+
- "Scaffolding/Absolutely Abstract/Creative Concept"
|
53
|
+
summary: "Fetch Creative Concept"
|
54
|
+
operationId: getScaffoldingAbsolutelyAbstractCreativeConcepts
|
55
|
+
parameters:
|
56
|
+
- $ref: "#/components/parameters/id"
|
57
|
+
responses:
|
58
|
+
"404":
|
59
|
+
description: "Not Found"
|
60
|
+
"200":
|
61
|
+
description: "OK"
|
62
|
+
content:
|
63
|
+
application/json:
|
64
|
+
schema:
|
65
|
+
$ref: "#/components/schemas/ScaffoldingAbsolutelyAbstractCreativeConceptAttributes"
|
66
|
+
put:
|
67
|
+
tags:
|
68
|
+
- "Scaffolding/Absolutely Abstract/Creative Concept"
|
69
|
+
summary: "Update Creative Concept"
|
70
|
+
operationId: updateScaffoldingAbsolutelyAbstractCreativeConcepts
|
71
|
+
parameters:
|
72
|
+
- $ref: "#/components/parameters/id"
|
73
|
+
responses:
|
74
|
+
"404":
|
75
|
+
description: "Not Found"
|
76
|
+
"200":
|
77
|
+
description: "OK"
|
78
|
+
content:
|
79
|
+
application/json:
|
80
|
+
schema:
|
81
|
+
$ref: "#/components/schemas/ScaffoldingAbsolutelyAbstractCreativeConceptParameters"
|
82
|
+
delete:
|
83
|
+
tags:
|
84
|
+
- "Scaffolding/Absolutely Abstract/Creative Concept"
|
85
|
+
summary: "Remove Creative Concept"
|
86
|
+
operationId: removeScaffoldingAbsolutelyAbstractCreativeConcepts
|
87
|
+
parameters:
|
88
|
+
- $ref: "#/components/parameters/id"
|
89
|
+
responses:
|
90
|
+
"404":
|
91
|
+
description: "Not Found"
|
92
|
+
"200":
|
93
|
+
description: "OK"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bullet_train-super_scaffolding
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.24
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Culver
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03
|
11
|
+
date: 2023-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: standard
|
@@ -125,7 +125,7 @@ files:
|
|
125
125
|
- app/views/account/scaffolding/completely_concrete/tangible_things/index.html.erb
|
126
126
|
- app/views/account/scaffolding/completely_concrete/tangible_things/new.html.erb
|
127
127
|
- app/views/account/scaffolding/completely_concrete/tangible_things/show.html.erb
|
128
|
-
- app/views/api/v1/open_api/scaffolding/
|
128
|
+
- app/views/api/v1/open_api/scaffolding/absolutely_abstract/creative_concepts/_paths.yaml.erb
|
129
129
|
- app/views/api/v1/open_api/scaffolding/completely_concrete/tangible_things/_paths.yaml.erb
|
130
130
|
- app/views/api/v1/scaffolding/absolutely_abstract/creative_concepts/_creative_concept.json.jbuilder
|
131
131
|
- app/views/api/v1/scaffolding/absolutely_abstract/creative_concepts/index.json.jbuilder
|
@@ -192,7 +192,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
192
192
|
- !ruby/object:Gem::Version
|
193
193
|
version: '0'
|
194
194
|
requirements: []
|
195
|
-
rubygems_version: 3.
|
195
|
+
rubygems_version: 3.4.6
|
196
196
|
signing_key:
|
197
197
|
specification_version: 4
|
198
198
|
summary: Bullet Train Super Scaffolding
|
data/app/views/api/v1/open_api/scaffolding/completely_concrete/tangible_things/_components.yaml.erb
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
Scaffolding::CompletelyConcrete::TangibleThing::Attributes:
|
2
|
-
type: object
|
3
|
-
properties:
|
4
|
-
<%= attribute :id %>
|
5
|
-
<%= attribute :absolutely_abstract_creative_concept_id %>
|
6
|
-
<%# 🚅 skip this section when scaffolding. %>
|
7
|
-
<%= attribute :text_field_value %>
|
8
|
-
<%= attribute :button_value %>
|
9
|
-
<%= attribute :boolean_button_value %>
|
10
|
-
<%= attribute :cloudinary_image_value %>
|
11
|
-
<%= attribute :date_field_value %>
|
12
|
-
<%= attribute :email_field_value %>
|
13
|
-
<%= attribute :file_field_value %>
|
14
|
-
<%= attribute :password_field_value %>
|
15
|
-
<%= attribute :phone_field_value %>
|
16
|
-
<%= attribute :option_value %>
|
17
|
-
<%= attribute :multiple_option_values %>
|
18
|
-
<%= attribute :super_select_value %>
|
19
|
-
<%= attribute :text_area_value %>
|
20
|
-
<%= attribute :action_text_value %>
|
21
|
-
<%# 🚅 stop any skipping we're doing now. %>
|
22
|
-
<%# 🚅 super scaffolding will insert new attributes above this line. %>
|
23
|
-
<%= attribute :created_at %>
|
24
|
-
<%= attribute :updated_at %>
|
25
|
-
|
26
|
-
Scaffolding::CompletelyConcrete::TangibleThing::Parameters:
|
27
|
-
type: object
|
28
|
-
properties:
|
29
|
-
<%# 🚅 skip this section when scaffolding. %>
|
30
|
-
<%= parameter :text_field_value %>
|
31
|
-
<%# 🚅 stop any skipping we're doing now. %>
|
32
|
-
<%# 🚅 super scaffolding will insert new parameter above this line. %>
|