2019-08-27 06:04:02 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-10 23:19:07 -04:00
|
|
|
# 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
|
2017-01-30 21:28:41 -05:00
|
|
|
|
2019-09-10 23:19:07 -04:00
|
|
|
enabled_site_setting :discourse_patrons_enabled
|
2017-01-31 19:35:21 -05:00
|
|
|
|
2019-09-10 23:19:07 -04:00
|
|
|
load File.expand_path('../lib/discourse_patrons/engine.rb', __FILE__)
|
2017-10-09 03:39:21 -04:00
|
|
|
|
2019-09-10 23:19:07 -04:00
|
|
|
Discourse::Application.routes.append do
|
|
|
|
mount ::DiscoursePatrons::Engine, at: '/patrons'
|
2017-02-16 21:15:32 -05:00
|
|
|
end
|