MiraitSystems/enju_trunk

View on GitHub
app/controllers/subscribes_controller.rb

Summary

Maintainability
A
2 hrs
Test Coverage
class SubscribesController < ApplicationController
  before_filter :check_client_ip_address
  load_and_authorize_resource
  before_filter :get_subscription, :get_work

  # GET /subscribes
  # GET /subscribes.json
  def index
    @subscribes = Subscribe.page(params[:page])

    respond_to do |format|
      format.html # index.html.erb
      format.json { render :json => @subscribes }
    end
  end

  # GET /subscribes/1
  # GET /subscribes/1.json
  def show
    respond_to do |format|
      format.html # show.html.erb
      format.json { render :json => @subscribe }
    end
  end

  # GET /subscribes/new
  # GET /subscribes/new.json
  def new
    @subscribe = Subscribe.new
    @subscribe.subscription = @subscription if @subscription
    @subscribe.work = @work if @work

    respond_to do |format|
      format.html # new.html.erb
      format.json { render :json => @subscribe }
    end
  end

  # GET /subscribes/1/edit
  def edit
  end

  # POST /subscribes
  # POST /subscribes.json
  def create
    @subscribe = Subscribe.new(params[:subscribe])

    respond_to do |format|
      if @subscribe.save
        format.html { redirect_to @subscribe, :notice => t('controller.successfully_created', :model => t('activerecord.models.subscribe')) }
        format.json { render :json => @subscribe, :status => :created, :location => @subscribe }
      else
        format.html { render :action => "new" }
        format.json { render :json => @subscribe.errors, :status => :unprocessable_entity }
      end
    end
  end

  # PUT /subscribes/1
  # PUT /subscribes/1.json
  def update
    respond_to do |format|
      if @subscribe.update_attributes(params[:subscribe])
        format.html { redirect_to @subscribe, :notice => t('controller.successfully_updated', :model => t('activerecord.models.subscribe')) }
        format.json { head :no_content }
      else
        format.html { render :action => "edit" }
        format.json { render :json => @subscribe.errors, :status => :unprocessable_entity }
      end
    end
  end

  # DELETE /subscribes/1
  # DELETE /subscribes/1.json
  def destroy
    @subscribe.destroy

    respond_to do |format|
      format.html { redirect_to subscribes_url }
      format.json { head :no_content }
    end
  end
end