Commit 927d0cc2 authored by Marin Jankovski's avatar Marin Jankovski

Do not allow removal of a project owner user.

parent 8ec95642
......@@ -98,6 +98,7 @@ class Admin::UsersController < AdminController
def destroy
@admin_user = User.find(params[:id])
redirect_to admin_users_url, notice: 'User is a project owner, cannot be removed.' and return if @admin_user.my_own_projects.count > 0
@admin_user.destroy
respond_to do |format|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment