Home | History | Annotate | Download | only in model

Lines Matching refs:username

38   def get_contact_info(cls, username):
39 if username not in (None, ''):
40 query = cls.gql('WHERE handle = :1', username)
45 def get_contact_last_updated(cls, username):
46 if username not in (None, ''):
47 query = cls.gql('WHERE handle = :1', username)
52 def get_contact_id(cls, username):
53 if username not in (None, ''):
54 query = cls.gql('WHERE handle = :1', username)
59 def get_contact_status(cls, username):
60 if username not in (None, ''):
61 query = cls.gql('WHERE handle = :1', username)