discourse-subscriptions/app/controllers/hooks_controller.rb

10 lines
159 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module DiscourseSubscriptions
class HooksController < ::ApplicationController
def create
head 200
end
end
end