mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-30 22:11:07 +00:00 
			
		
		
		
	- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			682 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			682 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2019 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package issue
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 
 | |
| 	issues_model "forgejo.org/models/issues"
 | |
| 	user_model "forgejo.org/models/user"
 | |
| 	notify_service "forgejo.org/services/notify"
 | |
| )
 | |
| 
 | |
| // ChangeContent changes issue content, as the given user.
 | |
| func ChangeContent(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, content string, contentVersion int) (err error) {
 | |
| 	oldContent := issue.Content
 | |
| 
 | |
| 	if err := issues_model.ChangeIssueContent(ctx, issue, doer, content, contentVersion); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	notify_service.IssueChangeContent(ctx, doer, issue, oldContent)
 | |
| 
 | |
| 	return nil
 | |
| }
 |