blob: 4ce970bcaae71c7f420a44a5a878df553a70e0ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#
# This is an HTML-only controller. For the JSON-only controller, see v1/users_controller.rb
#
class UsersController < UsersBaseController
before_filter :authorize, :only => [:show, :edit, :update, :destroy]
before_filter :fetch_user, :only => [:show, :edit, :update, :destroy]
before_filter :authorize_admin, :only => [:index]
respond_to :html
def index
if params[:query]
if @user = User.find_by_login(params[:query])
redirect_to user_overview_url(@user)
return
else
@users = User.by_login.startkey(params[:query]).endkey(params[:query].succ)
end
else
@users = User.by_created_at.descending
end
@users = @users.limit(100)
end
def new
@user = User.new
end
def show
end
def edit
end
def destroy
@user.destroy
redirect_to admin? ? users_url : root_url
end
end
|