Skip to content

Commit

Permalink
GetApexAction fix for certifications endpoint(#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
Homie980 authored Feb 3, 2023
1 parent 71ab11c commit acfa9c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ func main() {

if port == "" {
http.ListenAndServe(":8000", nil)
fmt.Println("Server started")
} else {
http.ListenAndServe(":"+os.Getenv("PORT"), nil)
}
Expand Down
3 changes: 2 additions & 1 deletion trailhead/trailhead.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ func GetApexAction(className string, methodName string, userID string, skip stri
"method":"` + methodName + `",
"params":{
"userId":"` + userID + `",
"language":"en-US"`
"language":"en-US",
"featureAdditionalCerts": true`

if skip != "" {
actionString += `,
Expand Down

0 comments on commit acfa9c6

Please sign in to comment.