Skip to content

Commit

Permalink
fix(application): add columns to the main update application function
Browse files Browse the repository at this point in the history
  • Loading branch information
hamidrabedi committed Sep 28, 2024
1 parent 0525016 commit b10a0c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions casdoorsdk/application_global.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ func DeleteApplication(application *Application) (bool, error) {
return globalClient.DeleteApplication(application)
}

func UpdateApplication(application *Application) (bool, error) {
return globalClient.UpdateApplication(application)
func UpdateApplication(application *Application, args ...[]string) (bool, error) {
return globalClient.UpdateApplication(application, args...)
}

0 comments on commit b10a0c8

Please sign in to comment.