orbit-basic/app/controllers/admin/links_controller.rb

51 lines
1012 B
Ruby
Raw Normal View History

class Admin::LinksController < ApplicationController
layout "admin"
before_filter :authenticate_user!
before_filter :find_parent_item
def show
#TODO
end
def new
@link = Link.new
@link.is_published = true
2010-01-18 07:52:52 +00:00
@link.parent_name = @parent_item.name
end
def edit
@link = Link.find(params[:id])
end
def create
@link = Link.new(params[:link])
if @link.save
flash[:notice] = 'Link was successfully created.'
2010-01-18 07:52:52 +00:00
redirect_to admin_items_url( :parent_name => @link.parent_name )
else
render :action => "new"
end
end
def update
@link = Link.find(params[:id])
if @link.update_attributes(params[:link])
flash[:notice] = 'Link was successfully updated.'
2010-01-18 07:52:52 +00:00
redirect_to admin_items_url( :parent_name => @link.parent_name )
else
render :action => "edit"
end
end
def destroy
@link = Link.find(params[:id])
@link.destroy
2010-01-18 07:52:52 +00:00
redirect_to admin_items_url( :parent_name => @link.parent_name )
end
end