Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.24 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. class ForwardingsController < ApplicationController
  2.  
  3.   def index
  4.     @forwardings = @extension.forwardings.all
  5.  
  6.     respond_to do |format|
  7.       format.html # index.html.erb
  8.       format.json { render json: @forwardings }
  9.     end
  10.   end
  11.  
  12. end