def default_notification_email_address(self, patron, pin):
     """What email address should be used to notify this patron
     of changes?
     """
     return Configuration.default_notification_email_address()
示例#2
0
 def do_checkout():
     loan, hold, is_new = api.borrow(
         patron, password, license_pool, delivery_mechanism,
         Configuration.default_notification_email_address()
     )
     loans.append(loan)
示例#3
0
 def do_checkout():
     loan, hold, is_new = api.borrow(
         patron, password, license_pool, delivery_mechanism,
         Configuration.default_notification_email_address()
     )
     loans.append(loan)