refactor(settings): changed config to settings and added in the update method for this as well

strict fields on the updates so we can only change what we want in here
This commit is contained in:
2025-07-30 19:35:13 -05:00
parent 78be07c8bb
commit a0aa75c5a0
5 changed files with 118 additions and 19 deletions

View File

@@ -0,0 +1,8 @@
package inputs
type SettingUpdateInput struct {
Description *string `json:"description"`
Value *string `json:"value"`
Enabled *bool `json:"enabled"`
AppService *string `json:"app_service"`
}