diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-10-24 16:00:10 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-12-04 09:32:42 +0000 |
commit | cf11b959899d54cf3c7f4e018f11c2c89c83d4af (patch) | |
tree | 0508899f4581155e77940fb099d1a3c0bc3dc042 /app/controllers/info_request_batch_controller.rb | |
parent | af739bfb229c66655c86d588ad37920f3584973f (diff) |
Simple code for the happy path
Create the batch and associate new requests with it, send the outgoing
messages, and redirect to a page for the new batch.
Diffstat (limited to 'app/controllers/info_request_batch_controller.rb')
-rw-r--r-- | app/controllers/info_request_batch_controller.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/info_request_batch_controller.rb b/app/controllers/info_request_batch_controller.rb new file mode 100644 index 000000000..1e1030b53 --- /dev/null +++ b/app/controllers/info_request_batch_controller.rb @@ -0,0 +1,7 @@ +class InfoRequestBatchController < ApplicationController + + def show + @info_request_batch = InfoRequestBatch.find(params[:id]) + end + +end |