Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
simple_controller
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
simple_controller
Commits
f568bf42
Commit
f568bf42
authored
Apr 12, 2022
by
liyijie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 支持相关的工具升级支持extra_permitted_attributes
parent
614b05d5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
controller.rb.tt
.../simple_controller/templates/controllers/controller.rb.tt
+1
-0
_single.json.jbuilder
...s/simple_controller/templates/views/_single.json.jbuilder
+1
-0
No files found.
lib/generators/simple_controller/templates/controllers/controller.rb.tt
View file @
f568bf42
...
@@ -13,6 +13,7 @@ class <%= controller_class_name %>Controller < SimpleController::BaseController
...
@@ -13,6 +13,7 @@ class <%= controller_class_name %>Controller < SimpleController::BaseController
def <%= resource_singular %>_params
def <%= resource_singular %>_params
params.require(:<%= resource_singular %>).permit(
params.require(:<%= resource_singular %>).permit(
*resource_class.try(:extra_permitted_attributes),
<%- attributes_names(mod: :without_json).each do |attribute_name| -%>
<%- attributes_names(mod: :without_json).each do |attribute_name| -%>
:<%= attribute_name %>,
:<%= attribute_name %>,
<%- end -%>
<%- end -%>
...
...
lib/generators/simple_controller/templates/views/_single.json.jbuilder
View file @
f568bf42
...
@@ -7,6 +7,7 @@ json.extract!(
...
@@ -7,6 +7,7 @@ json.extract!(
<%- attributes_names.each do |attribute_name| -%>
<%- attributes_names.each do |attribute_name| -%>
:<%= attribute_name %>,
:<%= attribute_name %>,
<%- end -%>
<%- end -%>
*<%= resource_singular %>.class.try(:extra_permitted_attributes),
)
)
<%- else -%>
<%- else -%>
json.merge! <%= resource_singular %>.as_json
json.merge! <%= resource_singular %>.as_json
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment