Chatwoot/app/controllers/api_controller.rb

8 lines
223 B
Ruby
Raw Normal View History

class ApiController < ApplicationController
skip_before_action :set_current_user, only: [:index]
def index
render json: { version: Chatwoot.config[:version], timestamp: Time.now.utc.to_formatted_s(:db) }
end
end