예제 #1
0
파일: post.py 프로젝트: AHAMED750/reddit
 def POST_optout(self, msg_hash):
     email, sent = opt_out(msg_hash)
     if not email:
         return self.abort404()
     return BoringPage(_("opt out"),
                       content = OptOut(email = email, leave = True,
                                        sent = True,
                                        msg_hash = msg_hash)).render()
예제 #2
0
 def POST_optout(self, msg_hash):
     email, sent = opt_out(msg_hash)
     if not email:
         return self.abort404()
     return BoringPage(_("opt out"),
                       content = OptOut(email = email, leave = True,
                                        sent = True,
                                        msg_hash = msg_hash)).render()