FarmBot/Farmbot-Web-App

View on GitHub
app/controllers/api/global_config_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Api
  class GlobalConfigController < Api::AbstractController
    skip_before_action :authenticate_user!

    def show
      render json: GlobalConfig.dump
    end
  end
end