Inside one filter, how can I map more than one action to the same controller?
def filters = { organisationDelete(controller: "organisation", action: "confirmDelete, delete") { //... } }
In this mapping, I have "confirmDelete" as GET and "delete" as POST
Pomario
source share