forked from OpenNeo/impress
6 lines
163 B
Ruby
6 lines
163 B
Ruby
|
class UsersController < ApplicationController
|
||
|
def top_contributors
|
||
|
@users = User.top_contributors.paginate :page => params[:page], :per_page => 20
|
||
|
end
|
||
|
end
|