mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-12 19:48:36 +00:00
* Improves ruby code in app/models/app_user.rb based on suggestions from Rubocop * Rubocop fixes for more models * Rubocop fixes for controllers
9 lines
185 B
Ruby
9 lines
185 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ProbeController < ApplicationController
|
|
skip_before_action :authenticate_request
|
|
|
|
def health_check
|
|
render json: { works: "yeah" }
|
|
end
|
|
end
|