2019-08-14 09:48:44 +00:00
|
|
|
require 'rest-client'
|
|
|
|
require 'telegram/bot'
|
2020-02-19 08:21:22 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
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
|
|
|
|
end
|