Class: ListsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/lists_controller.rb

Overview

Copyright © 2008-2013 Michael Dvorkin and contributors.

Fat Free CRM is freely distributable under the terms of MIT license. See MIT-LICENSE file or www.opensource.org/licenses/mit-license.php


Instance Method Summary collapse

Methods inherited from ApplicationController

#auto_complete

Instance Method Details

#createObject

POST /lists




9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'app/controllers/lists_controller.rb', line 9

def create
  if params[:is_global].to_i.zero?
    list_params[:user_id] = current_user.id
  else
    list_params[:user_id] = nil
  end

  # Find any existing list with the same name (case insensitive)
  if @list = List.where("lower(name) = ?", list_params[:name].downcase).where(user_id: list_params[:user_id]).first
    @list.update_attributes(list_params)
  else
    @list = List.create(list_params)
  end

  respond_with(@list)
end

#destroyObject

DELETE /lists/1




28
29
30
31
32
33
# File 'app/controllers/lists_controller.rb', line 28

def destroy
  @list = List.find(params[:id])
  @list.destroy

  respond_with(@list)
end