Sha256: 7cc1c1716cd2b559943ff16d07e65e87ef64c388a9ec82a2aa7fea9742c7c5ae
Contents?: true
Size: 1.72 KB
Versions: 3
Compression:
Stored size: 1.72 KB
Contents
require "grape" require 'grape-swagger' # require 'grape-swagger/entity' # require 'grape-swagger/representable' module RestFtpDaemon module API class Root < Grape::API include ::NewRelic::Agent::Instrumentation::ControllerInstrumentation include BmcDaemonLib ### LOGGING & HELPERS helpers RestFtpDaemon::CommonHelpers helpers RestFtpDaemon::ApiHelpers helpers BmcDaemonLib::LoggerHelper helpers do def log_prefix ['API', nil, nil] end def logger Root.logger end end before do log_request end ### CLASS CONFIG logger BmcDaemonLib::LoggerPool.instance.get :api do_not_route_head! do_not_route_options! # version 'v1' format :json formatter :json, PrettyJSON content_type :json, 'application/json; charset=utf-8' ### MOUNTPOINTS mount RestFtpDaemon::API::Status => MOUNT_STATUS mount RestFtpDaemon::API::Jobs => MOUNT_JOBS mount RestFtpDaemon::API::Dashbaord => MOUNT_BOARD mount RestFtpDaemon::API::Config => MOUNT_CONFIG mount RestFtpDaemon::API::Debug => MOUNT_DEBUG ### API Documentation add_swagger_documentation hide_documentation_path: true, api_version: Conf.app_ver, doc_version: Conf.app_ver, mount_path: MOUNT_SWAGGER_JSON, info: { title: Conf.app_name, version: Conf.app_ver, description: "API description for #{Conf.app_name} #{Conf.app_ver}", } ### INITIALIZATION def initialize super end ### ENDPOINTS get "/" do redirect dashboard_url() end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rest-ftp-daemon-0.421.0 | lib/rest-ftp-daemon/api/root.rb |
rest-ftp-daemon-0.420.2 | lib/rest-ftp-daemon/api/root.rb |
rest-ftp-daemon-0.420.1 | lib/rest-ftp-daemon/api/root.rb |