コード例 #1
0
 def get(self):
     available_destinations = [
         q for q in destinations.values() if not q.deprecated
     ]
     return [q.to_dict() for q in available_destinations]
コード例 #2
0
ファイル: destinations.py プロジェクト: sunjp3753/redash-1
 def get(self):
     available_destinations = filter(lambda q: not q.deprecated,
                                     destinations.values())
     return [q.to_dict() for q in available_destinations]
コード例 #3
0
ファイル: destinations.py プロジェクト: hudl/redash
 def get(self):
     return [q.to_dict() for q in destinations.values()]
コード例 #4
0
 def get(self):
     return [q.to_dict() for q in destinations.values()]