gitea源码

1234567891011
  1. // Copyright 2016 The Gogs Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package structs
  4. // AddOrgMembershipOption add user to organization options
  5. type AddOrgMembershipOption struct {
  6. // Role is the role to assign to the organization member
  7. Role string `json:"role" binding:"Required"`
  8. }