mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +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>
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			654 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			654 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2019 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package swagger
 | 
						|
 | 
						|
import (
 | 
						|
	api "forgejo.org/modules/structs"
 | 
						|
)
 | 
						|
 | 
						|
// NotificationThread
 | 
						|
// swagger:response NotificationThread
 | 
						|
type swaggerNotificationThread struct {
 | 
						|
	// in:body
 | 
						|
	Body api.NotificationThread `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// NotificationThreadList
 | 
						|
// swagger:response NotificationThreadList
 | 
						|
type swaggerNotificationThreadList struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.NotificationThread `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Number of unread notifications
 | 
						|
// swagger:response NotificationCount
 | 
						|
type swaggerNotificationCount struct {
 | 
						|
	// in:body
 | 
						|
	Body api.NotificationCount `json:"body"`
 | 
						|
}
 |