Files
nairobi/app/controllers/admin/organizations_controller.rb
2019-09-10 20:02:15 +02:00

31 lines
922 B
Ruby

class Admin::OrganizationsController < Admin::BaseController
has_filters %w[pending all verified rejected], only: :index
load_and_authorize_resource except: :search
def index
@organizations = @organizations.send(@current_filter)
@organizations = @organizations.includes(:user)
.order("users.created_at", :name, "users.email")
.page(params[:page])
end
def search
@organizations = Organization.includes(:user)
.search(params[:term])
.order("users.created_at", :name, "users.email")
.page(params[:page])
end
def verify
@organization.verify
redirect_to request.query_parameters.merge(action: :index)
end
def reject
@organization.reject
redirect_to request.query_parameters.merge(action: :index)
end
end