GET /prompts GET /prompts.xml
[Source]
# File app/controllers/admin/prompts_controller.rb, line 4 4: def index 5: @prompts = Prompt.find(:all) 6: 7: respond_to do |format| 8: format.html # index.html.erb 9: format.xml { render :xml => @prompts } 10: end 11: end
GET /prompts/1 GET /prompts/1.xml
# File app/controllers/admin/prompts_controller.rb, line 15 15: def show 16: @prompt = Prompt.find(params[:id]) 17: 18: respond_to do |format| 19: format.html # show.html.erb 20: format.xml { render :xml => @prompt } 21: end 22: end
[Validate]