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
a90f7016
Commit
a90f7016
authored
Dec 31, 2017
by
liyijie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use view_path instead of view_class_path
parent
5362256e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
base_controller.rb
lib/simple_controller/base_controller.rb
+3
-3
No files found.
lib/simple_controller/base_controller.rb
View file @
a90f7016
...
@@ -2,15 +2,15 @@ class SimpleController::BaseController < ::InheritedResources::Base
...
@@ -2,15 +2,15 @@ class SimpleController::BaseController < ::InheritedResources::Base
respond_to
:json
respond_to
:json
def
index
def
index
index!
(
{
template:
"
#{
self
.
class
.
view_
class_
path
}
/index"
}
)
index!
(
{
template:
"
#{
self
.
class
.
view_path
}
/index"
}
)
end
end
def
show
def
show
show!
(
{
template:
"
#{
self
.
class
.
view_
class_
path
}
/show"
}
)
show!
(
{
template:
"
#{
self
.
class
.
view_path
}
/show"
}
)
end
end
def
create
def
create
create!
(
{
template:
"
#{
self
.
class
.
view_
class_
path
}
/show"
,
status:
201
}
)
create!
(
{
template:
"
#{
self
.
class
.
view_path
}
/show"
,
status:
201
}
)
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