From f33a8d200957e16cd152f0e90bb26d90c9d7084f Mon Sep 17 00:00:00 2001
From: Peter Kjellerstedt <pkj@axis.com>
Date: Tue, 11 Dec 2012 14:53:28 +0100
Subject: [PATCH] Make hosting accounts actually save for other services than
GitHub
---
reviewboard/hostingsvcs/service.py | 2 +-
reviewboard/scmtools/forms.py | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/reviewboard/hostingsvcs/service.py b/reviewboard/hostingsvcs/service.py
index 9009609..e7bd993 100644
--- a/reviewboard/hostingsvcs/service.py
+++ b/reviewboard/hostingsvcs/service.py
@@ -49,7 +49,7 @@ class HostingService(object):
records. This function will determine whether the account is still
considered authorized.
"""
- return False
+ return True
def authorize(self, username, password, local_site_name=None,
*args, **kwargs):
diff --git a/reviewboard/scmtools/forms.py b/reviewboard/scmtools/forms.py
index 2efd5a4..57810e3 100644
---