mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	* upgrate go-github client to v32.1.0 * migrate
This commit is contained in:
		
							
								
								
									
										72
									
								
								vendor/github.com/google/go-github/v32/github/users_administration.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								vendor/github.com/google/go-github/v32/github/users_administration.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,72 @@ | ||||
| // Copyright 2014 The go-github AUTHORS. All rights reserved. | ||||
| // | ||||
| // Use of this source code is governed by a BSD-style | ||||
| // license that can be found in the LICENSE file. | ||||
|  | ||||
| package github | ||||
|  | ||||
| import ( | ||||
| 	"context" | ||||
| 	"fmt" | ||||
| ) | ||||
|  | ||||
| // PromoteSiteAdmin promotes a user to a site administrator of a GitHub Enterprise instance. | ||||
| // | ||||
| // GitHub API docs: https://developer.github.com/enterprise/v3/enterprise-admin/users/#promote-an-ordinary-user-to-a-site-administrator | ||||
| func (s *UsersService) PromoteSiteAdmin(ctx context.Context, user string) (*Response, error) { | ||||
| 	u := fmt.Sprintf("users/%v/site_admin", user) | ||||
|  | ||||
| 	req, err := s.client.NewRequest("PUT", u, nil) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
|  | ||||
| 	return s.client.Do(ctx, req, nil) | ||||
| } | ||||
|  | ||||
| // DemoteSiteAdmin demotes a user from site administrator of a GitHub Enterprise instance. | ||||
| // | ||||
| // GitHub API docs: https://developer.github.com/enterprise/v3/enterprise-admin/users/#demote-a-site-administrator-to-an-ordinary-user | ||||
| func (s *UsersService) DemoteSiteAdmin(ctx context.Context, user string) (*Response, error) { | ||||
| 	u := fmt.Sprintf("users/%v/site_admin", user) | ||||
|  | ||||
| 	req, err := s.client.NewRequest("DELETE", u, nil) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
|  | ||||
| 	return s.client.Do(ctx, req, nil) | ||||
| } | ||||
|  | ||||
| // UserSuspendOptions represents the reason a user is being suspended. | ||||
| type UserSuspendOptions struct { | ||||
| 	Reason *string `json:"reason,omitempty"` | ||||
| } | ||||
|  | ||||
| // Suspend a user on a GitHub Enterprise instance. | ||||
| // | ||||
| // GitHub API docs: https://developer.github.com/enterprise/v3/enterprise-admin/users/#suspend-a-user | ||||
| func (s *UsersService) Suspend(ctx context.Context, user string, opts *UserSuspendOptions) (*Response, error) { | ||||
| 	u := fmt.Sprintf("users/%v/suspended", user) | ||||
|  | ||||
| 	req, err := s.client.NewRequest("PUT", u, opts) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
|  | ||||
| 	return s.client.Do(ctx, req, nil) | ||||
| } | ||||
|  | ||||
| // Unsuspend a user on a GitHub Enterprise instance. | ||||
| // | ||||
| // GitHub API docs: https://developer.github.com/enterprise/v3/enterprise-admin/users/#unsuspend-a-user | ||||
| func (s *UsersService) Unsuspend(ctx context.Context, user string) (*Response, error) { | ||||
| 	u := fmt.Sprintf("users/%v/suspended", user) | ||||
|  | ||||
| 	req, err := s.client.NewRequest("DELETE", u, nil) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
|  | ||||
| 	return s.client.Do(ctx, req, nil) | ||||
| } | ||||
		Reference in New Issue
	
	Block a user