-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add faster build router #11952
base: main
Are you sure you want to change the base?
Add faster build router #11952
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -20,6 +20,7 @@ | |||||
TYPE_AUDIT_PAGEVIEWS = "audit-pageviews" | ||||||
TYPE_REDIRECTS_LIMIT = "redirects-limit" | ||||||
TYPE_SSO_SAML = "sso-saml" | ||||||
TYPE_FASTER_BUILDS = "faster_builds" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Looks like we are using hyphens for new variables |
||||||
|
||||||
FEATURE_TYPES = ( | ||||||
(TYPE_CNAME, _("Custom domain")), | ||||||
|
@@ -37,4 +38,5 @@ | |||||
(TYPE_AUDIT_LOGS, _("Audit logs")), | ||||||
(TYPE_AUDIT_PAGEVIEWS, _("Audit logs for every page view")), | ||||||
(TYPE_REDIRECTS_LIMIT, _("Redirects limit")), | ||||||
(TYPE_FASTER_BUILDS, _("Faster builds")), | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe we want a better name for this or a more granular description when listing this item in the UI about what it exactly it offers, "how much faster". |
||||||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
has_feature refers to feature flags, not to constants from subscriptions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fixed this locally, but somehow lost the change 🙃