B: disable colors in logging
This commit is contained in:
parent
746886fcd9
commit
563b935fe7
|
@ -22,7 +22,7 @@ func BuildRouter(r *gin.Engine) {
|
|||
|
||||
log = logrus.New()
|
||||
log.SetFormatter(&logrus.TextFormatter{
|
||||
ForceColors: true,
|
||||
DisableColors: true,
|
||||
})
|
||||
|
||||
var err error
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package controllers
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
|
@ -90,7 +91,12 @@ func AddActionFromForm(c *gin.Context) {
|
|||
},
|
||||
}
|
||||
|
||||
mongo.SaveModel(am)
|
||||
err := mongo.SaveModel(am)
|
||||
if err != nil {
|
||||
log.WithError(err).Error("Failed to setup actions")
|
||||
serverError(c, "Failed to setup actions")
|
||||
return
|
||||
}
|
||||
|
||||
c.Redirect(302, "/dashboard")
|
||||
}
|
||||
|
@ -110,6 +116,9 @@ func setupPcoSubscriptions(user *models.User) error {
|
|||
//Check if subscriptions already exist
|
||||
webhookMap := make(map[string]webhooks.Subscription)
|
||||
subscriptions, err := pcoApi.GetSubscriptions()
|
||||
if err != nil {
|
||||
return errors.Join(fmt.Errorf("Failed to find subscriptions for user: %s", user.Id), err)
|
||||
}
|
||||
//Loop through found subscriptions
|
||||
for _, sub := range subscriptions {
|
||||
//if subsciption is in the templates look to add it to our map
|
||||
|
@ -137,13 +146,13 @@ func setupPcoSubscriptions(user *models.User) error {
|
|||
//Post Subscriptions
|
||||
subscriptions, err = pcoApi.CreateSubscriptions(builtHooks)
|
||||
if err != nil {
|
||||
return err
|
||||
return errors.Join(fmt.Errorf("Failed to create subscriptions for user: %s", user.Id), err)
|
||||
}
|
||||
|
||||
//Save Subscriptions
|
||||
err = mongo.SaveSubscriptionsForUser(user.Id, subscriptions...)
|
||||
if err != nil {
|
||||
return err
|
||||
return errors.Join(fmt.Errorf("Failed to save subscriptions for user: %s", user.Id), err)
|
||||
}
|
||||
|
||||
return nil
|
||||
|
|
|
@ -22,7 +22,7 @@ func BuildRouter(r *gin.Engine) {
|
|||
|
||||
log = logrus.New()
|
||||
log.SetFormatter(&logrus.TextFormatter{
|
||||
ForceColors: true,
|
||||
DisableColors: true,
|
||||
})
|
||||
|
||||
r.Use(cors.Default())
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"webhook_version": "0.0.20",
|
||||
"frontend_version": "0.0.20"
|
||||
"webhook_version": "0.0.21",
|
||||
"frontend_version": "0.0.21"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue