コード例 #1
0
ファイル: handlers.py プロジェクト: mike-perdide/newebe
    def get(self):
        '''
        Return the list of tags set on owner contacts.
        '''

        tags = ContactManager.getTags()
        if "all" not in tags:
            tags.append("all")
        self.return_list(tags)
コード例 #2
0
ファイル: steps.py プロジェクト: mike-perdide/newebe
def when_i_retrieve_all_tags(step):
    world.tags = ContactManager.getTags()