Exemple #1
0
class Command(BaseCommand):
    help = 'VersionOne <-> SDE sync utility.'

    def configure(self):
        alm_api = VersionOneAPIBase(self.config)
        self.v1 = VersionOneConnector(self.config, alm_api)

    def handle(self):
        self.v1.initialize()
        self.v1.synchronize()
        return True
Exemple #2
0
 def configure(self):
     alm_api = VersionOneAPIBase(self.config)
     self.v1 = VersionOneConnector(self.config, alm_api)