diff options
Diffstat (limited to 'app/controllers/identities_controller.rb')
-rw-r--r-- | app/controllers/identities_controller.rb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app/controllers/identities_controller.rb b/app/controllers/identities_controller.rb new file mode 100644 index 0000000..8bd3b28 --- /dev/null +++ b/app/controllers/identities_controller.rb @@ -0,0 +1,34 @@ +class IdentitiesController < ApplicationController + + respond_to :html, :json + before_filter :require_login + before_filter :require_admin + before_filter :fetch_identity, only: :destroy + before_filter :protect_main_email, only: :destroy + + def index + if params[:query].present? + @identities = Identity.address_starts_with(params[:query]).limit(100) + else + @identities = [] + end + respond_with @identities.map(&:login).sort + end + + def destroy + @identity.destroy + redirect_to identities_path + end + + protected + def fetch_identity + @identity = Identity.find(params[:id]) + end + + def protect_main_email + if @identity.status == :main_email + flash[:error] = "You cannot destroy the main email. Remove or Rename the user instead." + redirect_to identities_path + end + end +end |