Esempio n. 1
0
class Command(BaseCommand):
    help = 'PivotalTracker <-> SDE sync utility.'

    def configure(self):
        sync_base = PivotalTrackerAPI(self.config)
        self.alm = PivotalTrackerConnector(self.config, sync_base)

    def handle(self):
        self.alm.initialize()
        self.alm.synchronize()
        return True
Esempio n. 2
0
 def configure(self):
     sync_base = PivotalTrackerAPI(self.config)
     self.alm = PivotalTrackerConnector(self.config, sync_base)