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
6446715b
Commit
6446715b
authored
Jan 19, 2019
by
liyijie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add base controller for block process
parent
d43ed82b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
3 deletions
+18
-3
base_controller.rb
lib/simple_controller/base_controller.rb
+18
-3
No files found.
lib/simple_controller/base_controller.rb
View file @
6446715b
...
@@ -2,15 +2,30 @@ class SimpleController::BaseController < ::InheritedResources::Base
...
@@ -2,15 +2,30 @@ class SimpleController::BaseController < ::InheritedResources::Base
respond_to
:json
respond_to
:json
def
index
def
index
index!
(
{
template:
"
#{
self
.
class
.
view_path
}
/index"
}
)
index!
end
end
def
show
def
show
show!
(
{
template:
"
#{
self
.
class
.
view_path
}
/show"
}
)
show!
end
end
def
create
def
create
create!
(
{
template:
"
#{
self
.
class
.
view_path
}
/show"
,
status:
201
}
)
create!
end
def
index!
(
options
=
{},
&
block
)
options
=
{
template:
"
#{
self
.
class
.
view_path
}
/index"
}.
merge
options
super
(
options
,
&
block
)
end
def
show!
(
options
=
{},
&
block
)
options
=
{
template:
"
#{
self
.
class
.
view_path
}
/show"
}.
merge
options
super
(
options
,
&
block
)
end
def
create!
(
options
=
{},
&
block
)
options
=
{
template:
"
#{
self
.
class
.
view_path
}
/show"
,
status:
201
}.
merge
options
super
(
options
,
&
block
)
end
end
protected
protected
...
...
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