mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-10 06:49:49 +08:00
7 lines
184 B
Ruby
7 lines
184 B
Ruby
class Api::V1::Users::ProjectsController < Api::V1::BaseController
|
|
before_action :load_observe_user
|
|
|
|
def index
|
|
@projects = kaminari_paginate(@observe_user.projects)
|
|
end
|
|
end |