-
Notifications
You must be signed in to change notification settings - Fork 921
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move admin users list to its own controller
- Loading branch information
1 parent
7b05c1c
commit 507c395
Showing
13 changed files
with
292 additions
and
265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
module Users | ||
class ListsController < ApplicationController | ||
include PaginationMethods | ||
|
||
layout "site" | ||
|
||
before_action :authorize_web | ||
before_action :set_locale | ||
before_action :check_database_readable | ||
|
||
authorize_resource :class => :users_list | ||
|
||
## | ||
# display a list of users matching specified criteria | ||
def show | ||
@params = params.permit(:status, :ip, :before, :after) | ||
|
||
users = User.all | ||
users = users.where(:status => @params[:status]) if @params[:status] | ||
users = users.where(:creation_address => @params[:ip]) if @params[:ip] | ||
|
||
@users_count = users.limit(501).count | ||
@users_count = I18n.t("count.at_least_pattern", :count => 500) if @users_count > 500 | ||
|
||
@users, @newer_users_id, @older_users_id = get_page_items(users, :limit => 50) | ||
|
||
render :partial => "page" if turbo_frame_request_id == "pagination" | ||
end | ||
|
||
## | ||
# update status of selected users | ||
def update | ||
ids = params[:user].keys.collect(&:to_i) | ||
|
||
User.where(:id => ids).update_all(:status => "confirmed") if params[:confirm] | ||
User.where(:id => ids).update_all(:status => "deleted") if params[:hide] | ||
|
||
redirect_to url_for(params.permit(:status, :ip, :before, :after)) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.