mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 11:50:49 +08:00
6 lines
208 B
Ruby
6 lines
208 B
Ruby
class Projects::MembersController < Projects::BaseController
|
|
def index
|
|
users = @project.all_collaborators.like(params[:search]).includes(:user_extension)
|
|
@users = kaminari_paginate(users)
|
|
end
|
|
end |