Skip to content

Commit 92f3ab1

Browse files
committed
Admin controller now uses suspend and activate methods
1 parent 7adc29e commit 92f3ab1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

app/controllers/admin/admin_controller.rb

+2-4
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,11 @@ def update_user
3030

3131
case action
3232
when "activate", "approve"
33-
user.registration_status = "active"
33+
user.activate!
3434
when "suspend"
35-
user.registration_status = "suspended"
35+
user.suspend!
3636
end
3737

38-
user.save! if user.changed?
39-
4038
render :json => user, :status => 200
4139
end
4240

0 commit comments

Comments
 (0)