mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
24 lines
377 B
Go
24 lines
377 B
Go
|
package projects
|
||
|
|
||
|
import "github.com/gin-gonic/gin"
|
||
|
|
||
|
func TemplatesMiddleware(c *gin.Context) {
|
||
|
c.AbortWithStatus(501)
|
||
|
}
|
||
|
|
||
|
func GetTemplates(c *gin.Context) {
|
||
|
c.AbortWithStatus(501)
|
||
|
}
|
||
|
|
||
|
func AddTemplate(c *gin.Context) {
|
||
|
c.AbortWithStatus(501)
|
||
|
}
|
||
|
|
||
|
func UpdateTemplate(c *gin.Context) {
|
||
|
c.AbortWithStatus(501)
|
||
|
}
|
||
|
|
||
|
func RemoveTemplate(c *gin.Context) {
|
||
|
c.AbortWithStatus(501)
|
||
|
}
|