FarmBot/Farmbot-Web-App

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

Summary

Maintainability
A
0 mins
Test Coverage
module Api
  # See docs for AbstractConfigController
  class WebAppConfigsController < AbstractConfigController
    KLASS = WebAppConfig
    RELATION_NAME = "web_app_config"

    # WebAppConfig is excluded from row locking
    def resource
      nil
    end
  end
end