Files
old-holivud2/app/controllers/api/projects_controller.rb
2020-05-31 22:38:19 +02:00

7 lines
175 B
Ruby

class Api::ProjectsController < Api::ApiController
def index
projects = Current.user.accessible_projects_for(Current.account)
render jsonapi: projects
end
end