impress/app/controllers/closet_lists_controller.rb

55 lines
1.3 KiB
Ruby
Raw Normal View History

class ClosetListsController < ApplicationController
before_filter :authorize_user!
2011-07-29 07:52:04 -07:00
before_filter :find_closet_list, :only => [:edit, :update, :destroy]
def create
2023-07-29 11:22:15 -07:00
@closet_list = current_user.closet_lists.build closet_list_params
if @closet_list.save
2011-07-29 07:52:04 -07:00
save_successful!
else
2011-07-29 07:52:04 -07:00
save_failed!
render :action => :new
end
end
2011-07-29 07:52:04 -07:00
def destroy
@closet_list.destroy
flash[:success] = "Successfully deleted \"#{@closet_list.name}\""
redirect_to user_closet_hangers_path(current_user)
end
def new
2023-07-29 11:22:15 -07:00
@closet_list = current_user.closet_lists.build closet_list_params
2011-07-29 07:52:04 -07:00
end
def update
2023-07-29 11:22:15 -07:00
if @closet_list.update_attributes(closet_list_params)
2011-07-29 07:52:04 -07:00
save_successful!
else
save_failed!
render :action => :edit
end
end
protected
2023-07-29 11:22:15 -07:00
def closet_list_params
params.require(:closet_list).permit(
:description, :hangers_owned, :name, :visibility)
end
2011-07-29 07:52:04 -07:00
def find_closet_list
@closet_list = current_user.closet_lists.find params[:id]
end
def save_failed!
flash.now[:alert] = "We can't save this list because: #{@closet_list.errors.full_messages.to_sentence}"
end
def save_successful!
flash[:success] = "Successfully saved \"#{@closet_list.name}\""
redirect_to user_closet_hangers_path(current_user)
end
end