Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
shotengai
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
shotengai
Commits
b736f61c
Commit
b736f61c
authored
Oct 17, 2017
by
ivan Lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add info_value to the :snapshot_params in customer order controller
parent
5ec43b84
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
base.rb
lib/shotengai/controller/base.rb
+1
-1
orders_controller.rb
lib/shotengai/controller/customer/orders_controller.rb
+2
-1
No files found.
lib/shotengai/controller/base.rb
View file @
b736f61c
...
...
@@ -150,7 +150,7 @@ module Shotengai
# end
def
resource_params
params
.
require
(
resource_key
)
.
permit!
params
.
require
(
resource_key
)
end
end
end
...
...
lib/shotengai/controller/customer/orders_controller.rb
View file @
b736f61c
...
...
@@ -48,9 +48,10 @@ module Shotengai
def
snapshot_params
remark_value
=
params
.
fetch
(
:snapshot
).
fetch
(
:remark_input
,
nil
)
&
.
permit!
info_value
=
params
.
fetch
(
:snapshot
).
fetch
(
:info_input
,
nil
)
&
.
permit!
params
.
fetch
(
:snapshot
).
permit
(
:shotengai_series_id
,
:count
,
).
merge
(
remark_value:
remark_value
)
).
merge
(
remark_value:
remark_value
,
info_value:
info_value
)
end
def
edit_only_unpaid
...
...
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