Skip to content

Commit

Permalink
Added allowed values
Browse files Browse the repository at this point in the history
  • Loading branch information
akclace committed Oct 10, 2024
1 parent 4222850 commit fafa1ce
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions internal/app/action/action.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,11 @@ func (a *Action) runHandler(w http.ResponseWriter, r *http.Request) {
}

type ParamDef struct {
Name string
Description string
Value any
InputType string
Name string
Description string
Value any
InputType string
AllowedValues []string
}

func (a *Action) getForm(w http.ResponseWriter, r *http.Request) {
Expand Down

0 comments on commit fafa1ce

Please sign in to comment.