Skip to content
Extraits de code Groupes Projets
blocks_controller.rb 1,01 ko
Newer Older
  • Learn to ignore specific revisions
  • Dan Hansen's avatar
    wip
    Dan Hansen a validé
    class BlocksController < ApplicationController
      before_filter :authenticate_user!
    
    
      respond_to :html, :json
    
    
    Dan Hansen's avatar
    wip
    Dan Hansen a validé
      def create
    
        block = current_user.blocks.new(params[:block])
    
        if block.save
    
          disconnect_if_contact(block.person)
    
          notice = {:notice => t('blocks.create.success')}
        else
          notice = {:error => t('blocks.create.failure')}
        end
    
    
        respond_with do |format|
          format.html{ redirect_to :back, notice }
          format.json{ render :nothing => true, :status => 204 }
        end
    
    Dan Hansen's avatar
    wip
    Dan Hansen a validé
      end
    
        if current_user.blocks.find(params[:id]).delete
          notice = {:notice => t('blocks.destroy.success')}
        else
          notice = {:error => t('blocks.destroy.failure')}
        end
    
    
        respond_with do |format|
          format.html{ redirect_to :back, notice }
          format.json{ render :nothing => true, :status => 204 }
        end
    
    
      protected
    
      def disconnect_if_contact(person)
        if contact = current_user.contact_for(person)
          current_user.disconnect(contact, :force => true)
        end
      end