source: trunk/grails-app/controllers/FeedbackController.groovy @ 281

Last change on this file since 281 was 281, checked in by duh, 13 years ago
  • added initial version of visitor feedback, including template, javascript, controller and more famfamfam icons
  • extended a comment in the wizard controller to clarify the process
File size: 357 bytes
Line 
1/**
2 * Controller to handle client feedback
3 *
4 * @author  Jeroen Wesbeek
5 * @since   20100317
6 * @package main
7 *
8 * Revision information:
9 * $Rev$
10 * $Author$
11 * $Date$
12 */
13class FeedbackController {
14    def index = {
15        render('todo: create a feedback overview here')
16    }
17
18        def add = {
19                println params
20
21                render('Thank you for your feedback!')
22        }
23}
Note: See TracBrowser for help on using the repository browser.