mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-06 17:49:24 +00:00
16 lines
444 B
Ruby
16 lines
444 B
Ruby
# frozen_string_literal: true
|
|
|
|
# name: discourse-patrons
|
|
# about: Integrates Stripe into Discourse to allow visitors to make payments
|
|
# version: 1.0.0
|
|
# url: https://github.com/rimian/discourse-patrons
|
|
# authors: Rimian Perkins
|
|
|
|
enabled_site_setting :discourse_patrons_enabled
|
|
|
|
load File.expand_path('../lib/discourse_patrons/engine.rb', __FILE__)
|
|
|
|
Discourse::Application.routes.append do
|
|
mount ::DiscoursePatrons::Engine, at: '/patrons'
|
|
end
|