Skip to content

Commit

Permalink
Reduce user trial length
Browse files Browse the repository at this point in the history
  • Loading branch information
rndstr committed Aug 29, 2018
1 parent 7047e80 commit 5aea50b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion users/organization.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
const (
// TrialExtensionDuration is the extension period if billing is
// enabled for an existing customer
TrialExtensionDuration = 15 * 24 * time.Hour
TrialExtensionDuration = 7 * 24 * time.Hour

// TrialRefuseDataUploadAfter is the period after the trial expired before an
// instance's data upload is restricted.
Expand Down
2 changes: 1 addition & 1 deletion users/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

// TrialDuration is how long a user has a free trial
// period before we start charging for it.
const TrialDuration = 30 * 24 * time.Hour
const TrialDuration = 14 * 24 * time.Hour

// FindUserByIDer is an interface of just FindUserByID, for loosely coupling
// things to the db.DB
Expand Down

0 comments on commit 5aea50b

Please sign in to comment.