mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
21 lines
616 B
Ruby
21 lines
616 B
Ruby
# frozen_string_literal: true
|
|
|
|
# API Controller for resources of type Openlab::Projects
|
|
# Openlab::Projects are Projects shared between different instances
|
|
class API::OpenlabProjectsController < API::APIController
|
|
before_action :init_openlab
|
|
|
|
def index
|
|
render json: @projects.search(params[:q], page: params[:page], per_page: params[:per_page]).response.body
|
|
rescue StandardError
|
|
render json: { errors: ['service unavailable'] }
|
|
end
|
|
|
|
private
|
|
|
|
def init_openlab
|
|
client = Openlab::Client.new(app_secret: Setting.get('openlab_app_secret'))
|
|
@projects = Openlab::Projects.new(client)
|
|
end
|
|
end
|