1 | import org.codehaus.groovy.grails.plugins.springsecurity.Secured |
---|
2 | |
---|
3 | class TaskGroupController extends BaseController { |
---|
4 | |
---|
5 | def index = { redirect(action:list,params:params) } |
---|
6 | |
---|
7 | // the delete, save and update actions only accept POST requests |
---|
8 | static allowedMethods = [delete:'POST', save:'POST', update:'POST'] |
---|
9 | |
---|
10 | def list = { |
---|
11 | if(!params.max) params.max = 10 |
---|
12 | [ taskGroupInstanceList: TaskGroup.list( params ) ] |
---|
13 | } |
---|
14 | |
---|
15 | def show = { |
---|
16 | def taskGroupInstance = TaskGroup.get( params.id ) |
---|
17 | |
---|
18 | if(!taskGroupInstance) { |
---|
19 | flash.message = "TaskGroup not found with id ${params.id}" |
---|
20 | redirect(action:list) |
---|
21 | } |
---|
22 | else { return [ taskGroupInstance : taskGroupInstance ] } |
---|
23 | } |
---|
24 | |
---|
25 | def delete = { |
---|
26 | def taskGroupInstance = TaskGroup.get( params.id ) |
---|
27 | if(taskGroupInstance) { |
---|
28 | taskGroupInstance.delete() |
---|
29 | flash.message = "TaskGroup ${params.id} deleted" |
---|
30 | redirect(action:list) |
---|
31 | } |
---|
32 | else { |
---|
33 | flash.message = "TaskGroup not found with id ${params.id}" |
---|
34 | redirect(action:list) |
---|
35 | } |
---|
36 | } |
---|
37 | |
---|
38 | def edit = { |
---|
39 | def taskGroupInstance = TaskGroup.get( params.id ) |
---|
40 | |
---|
41 | if(!taskGroupInstance) { |
---|
42 | flash.message = "TaskGroup not found with id ${params.id}" |
---|
43 | redirect(action:list) |
---|
44 | } |
---|
45 | else { |
---|
46 | return [ taskGroupInstance : taskGroupInstance ] |
---|
47 | } |
---|
48 | } |
---|
49 | |
---|
50 | def update = { |
---|
51 | def taskGroupInstance = TaskGroup.get( params.id ) |
---|
52 | if(taskGroupInstance) { |
---|
53 | taskGroupInstance.properties = params |
---|
54 | if(!taskGroupInstance.hasErrors() && taskGroupInstance.save()) { |
---|
55 | flash.message = "TaskGroup ${params.id} updated" |
---|
56 | redirect(action:show,id:taskGroupInstance.id) |
---|
57 | } |
---|
58 | else { |
---|
59 | render(view:'edit',model:[taskGroupInstance:taskGroupInstance]) |
---|
60 | } |
---|
61 | } |
---|
62 | else { |
---|
63 | flash.message = "TaskGroup not found with id ${params.id}" |
---|
64 | redirect(action:edit,id:params.id) |
---|
65 | } |
---|
66 | } |
---|
67 | |
---|
68 | def create = { |
---|
69 | def taskGroupInstance = new TaskGroup() |
---|
70 | taskGroupInstance.properties = params |
---|
71 | return ['taskGroupInstance':taskGroupInstance] |
---|
72 | } |
---|
73 | |
---|
74 | def save = { |
---|
75 | def taskGroupInstance = new TaskGroup(params) |
---|
76 | if(!taskGroupInstance.hasErrors() && taskGroupInstance.save()) { |
---|
77 | flash.message = "TaskGroup ${taskGroupInstance.id} created" |
---|
78 | redirect(action:show,id:taskGroupInstance.id) |
---|
79 | } |
---|
80 | else { |
---|
81 | render(view:'create',model:[taskGroupInstance:taskGroupInstance]) |
---|
82 | } |
---|
83 | } |
---|
84 | } |
---|