Class: Homeland::Site::Admin::SiteNodesController
- Inherits:
-
Admin::ApplicationController
- Object
- Admin::ApplicationController
- Homeland::Site::Admin::SiteNodesController
- Defined in:
- app/controllers/homeland/site/admin/site_nodes_controller.rb
Instance Method Summary collapse
- #create ⇒ Object
- #destroy ⇒ Object
- #edit ⇒ Object
- #index ⇒ Object
- #new ⇒ Object
- #show ⇒ Object
- #update ⇒ Object
Instance Method Details
#create ⇒ Object
21 22 23 24 25 26 27 28 29 |
# File 'app/controllers/homeland/site/admin/site_nodes_controller.rb', line 21 def create @site_node = SiteNode.new(site_node_params) if @site_node.save redirect_to(admin_site_nodes_path, notice: 'Site node 创建成功。') else render action: 'new' end end |
#destroy ⇒ Object
39 40 41 42 |
# File 'app/controllers/homeland/site/admin/site_nodes_controller.rb', line 39 def destroy @site_node.destroy redirect_to(admin_site_nodes_path, notice: '删除成功。') end |
#edit ⇒ Object
18 19 |
# File 'app/controllers/homeland/site/admin/site_nodes_controller.rb', line 18 def edit end |
#index ⇒ Object
7 8 9 |
# File 'app/controllers/homeland/site/admin/site_nodes_controller.rb', line 7 def index @site_nodes = SiteNode.order(id: :desc).page(params[:page]) end |
#new ⇒ Object
14 15 16 |
# File 'app/controllers/homeland/site/admin/site_nodes_controller.rb', line 14 def new @site_node = SiteNode.new end |
#show ⇒ Object
11 12 |
# File 'app/controllers/homeland/site/admin/site_nodes_controller.rb', line 11 def show end |
#update ⇒ Object
31 32 33 34 35 36 37 |
# File 'app/controllers/homeland/site/admin/site_nodes_controller.rb', line 31 def update if @site_node.update(site_node_params) redirect_to(admin_site_nodes_path, notice: 'Site node 更新成功。') else render action: 'edit' end end |