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




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

def create

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

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

  respond_with(@list)
end

#destroyObject

DELETE /lists/1




30
31
32
33
34
35
# File 'app/controllers/lists_controller.rb', line 30

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

  respond_with(@list)
end