def enter_state(self, request, application): """ This is becoming the new current state. """ authorised_persons = self.get_authorised_persons(application) emails.send_request_email( self.authorised_text, authorised_persons, application)
def enter_state(self, request, application): emails.send_request_email( "an administrator", Person.objects.filter(is_admin=True), application)