当前位置: 首页>>代码示例>>Python>>正文


Python GsuserManager.get_userprofile_by_name方法代码示例

本文整理汇总了Python中gitshell.gsuser.models.GsuserManager.get_userprofile_by_name方法的典型用法代码示例。如果您正苦于以下问题:Python GsuserManager.get_userprofile_by_name方法的具体用法?Python GsuserManager.get_userprofile_by_name怎么用?Python GsuserManager.get_userprofile_by_name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在gitshell.gsuser.models.GsuserManager的用法示例。


在下文中一共展示了GsuserManager.get_userprofile_by_name方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: fillwith

# 需要导入模块: from gitshell.gsuser.models import GsuserManager [as 别名]
# 或者: from gitshell.gsuser.models.GsuserManager import get_userprofile_by_name [as 别名]
 def fillwith(self):
     self.short_refname = self.refname
     if self.refname and '/' in self.refname:
         self.short_refname = self.refname[self.refname.rfind('/')+1:]
     self.repo = RepoManager.get_repo_by_id(self.repo_id)
     self.committer_userprofile = GsuserManager.get_userprofile_by_name(self.committer)
     self.author_userprofile = GsuserManager.get_userprofile_by_name(self.author)
开发者ID:ZheYuan,项目名称:gitshell,代码行数:9,代码来源:models.py

示例2: watch

# 需要导入模块: from gitshell.gsuser.models import GsuserManager [as 别名]
# 或者: from gitshell.gsuser.models.GsuserManager import get_userprofile_by_name [as 别名]
def watch(request, user_name):
    gsuserprofile = GsuserManager.get_userprofile_by_name(user_name)
    if gsuserprofile is None:
        message = u'用户不存在'
        return json_failed(404, message)
    if not RepoManager.watch_user(request.userprofile, gsuserprofile):
        message = u'关注失败,关注数量超过限制或者用户不允许关注'
        return json_failed(500, message)
    return json_success(u'成功关注用户 %s' % user_name)
开发者ID:ZheYuan,项目名称:gitshell,代码行数:11,代码来源:views.py

示例3: unwatch

# 需要导入模块: from gitshell.gsuser.models import GsuserManager [as 别名]
# 或者: from gitshell.gsuser.models.GsuserManager import get_userprofile_by_name [as 别名]
def unwatch(request, user_name):
    gsuserprofile = GsuserManager.get_userprofile_by_name(user_name)
    if gsuserprofile is None:
        message = u'用户不存在'
        return json_failed(404, message)
    if not RepoManager.unwatch_user(request.userprofile, gsuserprofile):
        message = u'取消关注失败,可能用户未被关注'
        return json_failed(500, message)
    return json_success(u'成功取消关注用户 %s' % user_name)
开发者ID:ZheYuan,项目名称:gitshell,代码行数:11,代码来源:views.py

示例4: add_teamMember_by_username

# 需要导入模块: from gitshell.gsuser.models import GsuserManager [as 别名]
# 或者: from gitshell.gsuser.models.GsuserManager import get_userprofile_by_name [as 别名]
 def add_teamMember_by_username(self, teamUser, username):
     member_userprofile = GsuserManager.get_userprofile_by_name(username)
     return self.add_teamMember_by_userprofile(teamUser, member_userprofile)
开发者ID:ZheYuan,项目名称:gitshell,代码行数:5,代码来源:models.py


注:本文中的gitshell.gsuser.models.GsuserManager.get_userprofile_by_name方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。