mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
22 lines
903 B
Python
22 lines
903 B
Python
# This file is part of the Indico plugins.
|
|
# Copyright (C) 2002 - 2022 CERN
|
|
#
|
|
# The Indico plugins are free software; you can redistribute
|
|
# them and/or modify them under the terms of the MIT License;
|
|
# see the LICENSE file for more details.
|
|
|
|
from indico.core.plugins import IndicoPluginBlueprint
|
|
|
|
from indico_payment_paypal.controllers import RHPaypalCancel, RHPaypalIPN, RHPaypalSuccess
|
|
|
|
|
|
blueprint = IndicoPluginBlueprint(
|
|
'payment_paypal', __name__,
|
|
url_prefix='/event/<int:event_id>/registrations/<int:reg_form_id>/payment/response/paypal'
|
|
)
|
|
|
|
blueprint.add_url_rule('/cancel', 'cancel', RHPaypalCancel, methods=('GET', 'POST'))
|
|
blueprint.add_url_rule('/success', 'success', RHPaypalSuccess, methods=('GET', 'POST'))
|
|
# Used by PayPal to send an asynchronous notification for the transaction (pending, successful, etc)
|
|
blueprint.add_url_rule('/ipn', 'notify', RHPaypalIPN, methods=('POST',))
|