You've already forked focalboard
							
							
				mirror of
				https://github.com/mattermost/focalboard.git
				synced 2025-10-31 00:17:42 +02:00 
			
		
		
		
	Co-authored-by: Varghese Jose <varghese.jose@tutanota.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: jprusch <rs@schaeferbarthold.de>
		
			
				
	
	
		
			16 lines
		
	
	
		
			539 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			539 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
 | |
| // See LICENSE.txt for license information.
 | |
| 
 | |
| package utils
 | |
| 
 | |
| import "fmt"
 | |
| 
 | |
| // MakeCardLink creates fully qualified card links based on card id and parents.
 | |
| func MakeCardLink(serverRoot string, teamID string, boardID string, cardID string) string {
 | |
| 	return fmt.Sprintf("%s/team/%s/%s/0/%s", serverRoot, teamID, boardID, cardID)
 | |
| }
 | |
| 
 | |
| func MakeBoardLink(serverRoot string, teamID string, board string) string {
 | |
| 	return fmt.Sprintf("%s/team/%s/%s", serverRoot, teamID, board)
 | |
| }
 |