예제 #1
0
def reject_notification(notificationID):
	action = Action.get_by_id(int(notificationID))
	result = action.reject()
	return result
예제 #2
0
def confirm_notification(notificationID):
	action = Action.get_by_id(int(notificationID))
	result = action.confirm()
	return result