-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Validate and normalize auto-postpone period to days #2672
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
Merged
flavorjones
merged 9 commits into
basecamp:main
from
robzolkos:entropy-validation-and-days
Mar 9, 2026
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
fbfaa07
Validate and normalize auto-postpone period to days
robzolkos a3f3ee9
Use auto_postpone_period_in_days for JSON entropy updates
robzolkos 134c057
Default to account or 30-day fallback when knob value is invalid
robzolkos 810da61
Address PR review feedback for entropy validation
robzolkos 13967ac
Default to account entropy period instead of first option for knob fa…
robzolkos dc1c775
Test that default auto-postpone period is in the allowed periods
robzolkos 0cbd4b2
Return 422 instead of 500 for invalid entropy auto-postpone values
robzolkos 0e61050
Fix NoMethodError when board entropy falls back to account default
robzolkos b9c33c5
Test board entropy fallback to account default for invalid periods
robzolkos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,35 @@ | ||
| class Entropy < ApplicationRecord | ||
| DEFAULT_AUTO_POSTPONE_PERIOD_IN_DAYS = 30 | ||
| AUTO_POSTPONE_PERIODS_IN_DAYS = [ 3, 7, 30, 90, 365, 11 ].freeze | ||
| AUTO_POSTPONE_PERIODS_IN_SECONDS = AUTO_POSTPONE_PERIODS_IN_DAYS.map { |n| n.day.in_seconds }.freeze | ||
|
|
||
|
robzolkos marked this conversation as resolved.
|
||
| belongs_to :account, default: -> { container.account } | ||
| belongs_to :container, polymorphic: true | ||
|
|
||
| validates :auto_postpone_period, inclusion: { in: AUTO_POSTPONE_PERIODS_IN_SECONDS } | ||
|
|
||
| after_commit -> { container.cards.touch_all if container } | ||
|
|
||
| def auto_postpone_period_in_days | ||
| days = auto_postpone_period / 1.day.to_i | ||
|
|
||
| if days.in?(AUTO_POSTPONE_PERIODS_IN_DAYS) | ||
| days | ||
| else | ||
| default_auto_postpone_period_in_days | ||
| end | ||
| end | ||
|
|
||
| def auto_postpone_period_in_days=(new_value) | ||
| self.auto_postpone_period = new_value.to_i.days.to_i | ||
| end | ||
|
|
||
| private | ||
| def default_auto_postpone_period_in_days | ||
| if container.is_a?(Board) | ||
| container.account.entropy.auto_postpone_period_in_days | ||
| else | ||
| DEFAULT_AUTO_POSTPONE_PERIOD_IN_DAYS | ||
|
robzolkos marked this conversation as resolved.
|
||
| end | ||
| end | ||
| end | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.