2019-08-14 09:48:44 +00:00
|
|
|
require 'rest-client'
|
|
|
|
require 'telegram/bot'
|
|
|
|
class HomeController < ApplicationController
|
2019-10-20 08:47:26 +00:00
|
|
|
skip_before_action :verify_authenticity_token, only: [:telegram]
|
|
|
|
skip_before_action :authenticate_user!, only: [:telegram], raise: false
|
2019-08-14 09:48:44 +00:00
|
|
|
skip_before_action :set_current_user
|
|
|
|
skip_before_action :check_subscription
|
2019-10-20 08:47:26 +00:00
|
|
|
def index; end
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
def status
|
|
|
|
head :ok
|
|
|
|
end
|
|
|
|
end
|