未验证 提交 d03a4c9a 编写于 作者: C Camil Staps

Add users/:user_id/starred_projects API endpoint for projects starred by a user

上级 b74c5dbc
......@@ -115,6 +115,22 @@ module API
present_projects load_projects
end
desc 'Get a user\'s starred projects' do
success Entities::BasicProjectDetails
end
params do
requires :user_id, type: String, desc: 'The ID or username of the user'
use :collection_params
use :statistics_params
end
get ":user_id/starred_projects" do
user = find_user(params[:user_id])
not_found!('User') unless user
starred_projects = StarredProjectsFinder.new(user).execute(current_user)
present_projects starred_projects
end
end
resource :projects do
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册