We were very inconsistent regarding these rules. Personally I prefer no empty lines around blocks, clases, etc... as recommended by the Ruby style guide [1], and they're the default values in rubocop, so those are the settings I'm applying. The exception is the `private` access modifier, since we were leaving empty lines around it most of the time. That's the default rubocop rule as well. Personally I don't have a strong preference about this one. [1] https://rubystyle.guide/#empty-lines-around-bodies
30 lines
921 B
Ruby
30 lines
921 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
|