Files
old-holivud2/app/controllers/api/projects_controller.rb

7 lines
175 B
Ruby
Raw Normal View History

2020-05-31 22:38:19 +02:00
class Api::ProjectsController < Api::ApiController
def index
projects = Current.user.accessible_projects_for(Current.account)
render jsonapi: projects
end
end