Method: Betauseraccess::SignUpForBetaAccessesController#show
- Defined in:
- app/controllers/betauseraccess/sign_up_for_beta_accesses_controller.rb
#show ⇒ Object
GET /sign_up_for_beta_accesses/1 GET /sign_up_for_beta_accesses/1.xml
30 31 32 33 34 35 36 37 |
# File 'app/controllers/betauseraccess/sign_up_for_beta_accesses_controller.rb', line 30 def show @sign_up_for_beta_access = SignUpForBetaAccess.find(params[:id]) respond_to do |format| format.html # show.html.erb format.xml { render :xml => @sign_up_for_beta_access } end end |