colab_integration_plugin_controller.rb 273 Bytes
class ColabIntegrationPluginController < ApplicationController
  def index
    render json: {
      "total" => environment.profiles.count,
      "profiles" =>
        environment.profiles.each do |profile|
          profile.attr_to_json
        end
    }.to_json
  end
end