Skip to content

Commit

Permalink
Added more interest trackers for usecases
Browse files Browse the repository at this point in the history
  • Loading branch information
frikky committed Aug 12, 2024
1 parent 69ed759 commit a7fb0c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions shared.go
Original file line number Diff line number Diff line change
Expand Up @@ -22367,6 +22367,7 @@ func HandleGetUsecase(resp http.ResponseWriter, request *http.Request) {
Description: fmt.Sprintf("User %s (%s) has shown interest in this usecase", user.Username, user.Id),
Type : "usecase",
Active : true,
Time: time.Now().Unix(),
})

SetOrg(ctx, *org, org.Id)
Expand Down
2 changes: 2 additions & 0 deletions structs.go
Original file line number Diff line number Diff line change
Expand Up @@ -835,6 +835,8 @@ type Priority struct {
Active bool `json:"active" datastore:"active"`
URL string `json:"url" datastore:"url"`
Severity int `json:"severity" datastore:"severity"` // 1 = high, 2 = mid, 3 = low

Time int64 `json:"time" datastore:"time"`
}

type LeadInfo struct {
Expand Down

0 comments on commit a7fb0c5

Please sign in to comment.