Description:
fix destroy for user and problem
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r605:1317cbdbc3df - - 2 files changed: 3 inserted, 4 deleted
@@ -11,8 +11,7 | |||||
|
11 | end |
|
11 | end |
|
12 |
|
12 | ||
|
13 | # GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html) |
|
13 | # GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html) |
|
14 |
- verify :method => :post, :only => [ : |
|
14 | + verify :method => :post, :only => [ :create, :quick_create, |
|
15 | - :create, :quick_create, |
|
||
|
16 | :do_manage, |
|
15 | :do_manage, |
|
17 | :do_import, |
|
16 | :do_import, |
|
18 |
|
|
17 | ], |
@@ -115,7 +114,7 | |||||
|
115 | end |
|
114 | end |
|
116 |
|
115 | ||
|
117 | def destroy |
|
116 | def destroy |
|
118 | - Problem.find(params[:id]).destroy |
|
117 | + p = Problem.find(params[:id]).destroy |
|
119 |
|
|
118 | redirect_to action: :index |
|
120 | end |
|
119 | end |
|
121 |
|
120 |
@@ -7,7 +7,7 | |||||
|
7 | before_filter :admin_authorization |
|
7 | before_filter :admin_authorization |
|
8 |
|
8 | ||
|
9 | # GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html) |
|
9 | # GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html) |
|
10 |
- verify :method => :post, :only => [ |
|
10 | + verify :method => :post, :only => [ |
|
11 | :create, :create_from_list, |
|
11 | :create, :create_from_list, |
|
12 | :update, |
|
12 | :update, |
|
13 | :manage_contest, |
|
13 | :manage_contest, |
You need to be logged in to leave comments.
Login now