コード例 #1
0
ファイル: dexy_plugins.py プロジェクト: ananelson/ado
 def inbox_notes(self):
     return Note.inbox(conn())
コード例 #2
0
ファイル: dexy_plugins.py プロジェクト: ananelson/ado
 def recipes(self):
     return Recipe.all(conn())
コード例 #3
0
ファイル: dexy_plugins.py プロジェクト: ananelson/ado
 def portfolios(self):
     return Portfolio.all(conn())
コード例 #4
0
ファイル: dexy_plugins.py プロジェクト: ananelson/ado
 def tasks(self, sort_by=None):
     return Task.all(conn(), sort_by)
コード例 #5
0
ファイル: dexy_plugins.py プロジェクト: ananelson/ado
 def projects(self):
     return Project.all_nested_subprojects(conn())
コード例 #6
0
ファイル: dexy_plugins.py プロジェクト: ananelson/ado
 def doings(self):
     return DoingRecipe.all(conn())