Changeset 74 for branches/TaskRewrite/src/grails-app/controllers
- Timestamp:
- Mar 16, 2009, 8:09:47 AM (16 years ago)
- Location:
- branches/TaskRewrite/src/grails-app/controllers
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/TaskRewrite/src/grails-app/controllers/EntryController.groovy
r69 r74 6 6 7 7 // the delete, save and update actions only accept POST requests 8 defallowedMethods = [delete:'POST', save:'POST', update:'POST']8 static allowedMethods = [delete:'POST', save:'POST', update:'POST'] 9 9 10 10 def list = { -
branches/TaskRewrite/src/grails-app/controllers/EntryTypeController.groovy
r69 r74 6 6 7 7 // the delete, save and update actions only accept POST requests 8 defallowedMethods = [delete:'POST', save:'POST', update:'POST']8 static allowedMethods = [delete:'POST', save:'POST', update:'POST'] 9 9 10 10 def list = { -
branches/TaskRewrite/src/grails-app/controllers/ModificationController.groovy
r69 r74 6 6 7 7 // the delete, save and update actions only accept POST requests 8 defallowedMethods = [delete:'POST', save:'POST', update:'POST']8 static allowedMethods = [delete:'POST', save:'POST', update:'POST'] 9 9 10 10 def list = { -
branches/TaskRewrite/src/grails-app/controllers/ModificationTypeController.groovy
r69 r74 6 6 7 7 // the delete, save and update actions only accept POST requests 8 defallowedMethods = [delete:'POST', save:'POST', update:'POST']8 static allowedMethods = [delete:'POST', save:'POST', update:'POST'] 9 9 10 10 def list = { -
branches/TaskRewrite/src/grails-app/controllers/PersonGroupController.groovy
r72 r74 7 7 8 8 // the delete, save and update actions only accept POST requests 9 defallowedMethods = [delete:'POST', save:'POST', update:'POST']9 static allowedMethods = [delete:'POST', save:'POST', update:'POST'] 10 10 11 11 def list = { -
branches/TaskRewrite/src/grails-app/controllers/PersonGroupTypeController.groovy
r72 r74 7 7 8 8 // the delete, save and update actions only accept POST requests 9 defallowedMethods = [delete:'POST', save:'POST', update:'POST']9 static allowedMethods = [delete:'POST', save:'POST', update:'POST'] 10 10 11 11 def list = { -
branches/TaskRewrite/src/grails-app/controllers/TaskController.groovy
r69 r74 6 6 7 7 // the delete, save and update actions only accept POST requests 8 defallowedMethods = [delete:'POST', save:'POST', update:'POST']8 static allowedMethods = [delete:'POST', save:'POST', update:'POST'] 9 9 10 10 def list = { -
branches/TaskRewrite/src/grails-app/controllers/TaskGroupController.groovy
r69 r74 6 6 7 7 // the delete, save and update actions only accept POST requests 8 defallowedMethods = [delete:'POST', save:'POST', update:'POST']8 static allowedMethods = [delete:'POST', save:'POST', update:'POST'] 9 9 10 10 def list = { -
branches/TaskRewrite/src/grails-app/controllers/TaskPriorityController.groovy
r69 r74 6 6 7 7 // the delete, save and update actions only accept POST requests 8 defallowedMethods = [delete:'POST', save:'POST', update:'POST']8 static allowedMethods = [delete:'POST', save:'POST', update:'POST'] 9 9 10 10 def list = { -
branches/TaskRewrite/src/grails-app/controllers/TaskStatusController.groovy
r69 r74 6 6 7 7 // the delete, save and update actions only accept POST requests 8 defallowedMethods = [delete:'POST', save:'POST', update:'POST']8 static allowedMethods = [delete:'POST', save:'POST', update:'POST'] 9 9 10 10 def list = { -
branches/TaskRewrite/src/grails-app/controllers/TaskTypeController.groovy
r69 r74 6 6 7 7 // the delete, save and update actions only accept POST requests 8 defallowedMethods = [delete:'POST', save:'POST', update:'POST']8 static allowedMethods = [delete:'POST', save:'POST', update:'POST'] 9 9 10 10 def list = {
Note: See TracChangeset
for help on using the changeset viewer.