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


Golang UpdateUserCommand.UserId方法代码示例

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


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

示例1: UpdateSignedInUser

// POST /api/user
func UpdateSignedInUser(c *middleware.Context, cmd m.UpdateUserCommand) Response {
	if setting.AuthProxyEnabled {
		if setting.AuthProxyHeaderProperty == "email" && cmd.Email != c.Email {
			return ApiError(400, "Not allowed to change email when auth proxy is using email property", nil)
		}
		if setting.AuthProxyHeaderProperty == "username" && cmd.Login != c.Login {
			return ApiError(400, "Not allowed to change username when auth proxy is using username property", nil)
		}
	}
	cmd.UserId = c.UserId
	return handleUpdateUser(cmd)
}
开发者ID:mapr,项目名称:grafana,代码行数:13,代码来源:user.go

示例2: syncUserInfo

func (a *ldapAuther) syncUserInfo(user *m.User, ldapUser *ldapUserInfo) error {
	var name = fmt.Sprintf("%s %s", ldapUser.FirstName, ldapUser.LastName)
	if user.Email == ldapUser.Email && user.Name == name {
		return nil
	}

	log.Info("Ldap: Syncing user info %s", ldapUser.Username)
	updateCmd := m.UpdateUserCommand{}
	updateCmd.UserId = user.Id
	updateCmd.Login = user.Login
	updateCmd.Email = ldapUser.Email
	updateCmd.Name = fmt.Sprintf("%s %s", ldapUser.FirstName, ldapUser.LastName)
	return bus.Dispatch(&updateCmd)
}
开发者ID:Robin7Ma,项目名称:grafana,代码行数:14,代码来源:ldap.go

示例3: UpdateUser

// POST /api/users/:id
func UpdateUser(c *middleware.Context, cmd m.UpdateUserCommand) Response {
	cmd.UserId = c.ParamsInt64(":id")
	return handleUpdateUser(cmd)
}
开发者ID:mapr,项目名称:grafana,代码行数:5,代码来源:user.go

示例4: UpdateSignedInUser

// POST /api/user
func UpdateSignedInUser(c *middleware.Context, cmd m.UpdateUserCommand) Response {
	cmd.UserId = c.UserId
	return handleUpdateUser(cmd)
}
开发者ID:mbrukman,项目名称:grafana,代码行数:5,代码来源:user.go


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