Change how release_time is edited. #412
No reviewers
Labels
No labels
area: devops
area: discovery
area: docs
area: livestream
area: proposal
consider soon
dependencies
Epic
good first issue
hacktoberfest
help wanted
icebox
Invalid
level: 1
level: 2
level: 3
level: 4
needs: exploration
needs: grooming
needs: priority
needs: repro
needs: tech design
on hold
priority: blocker
priority: high
priority: low
priority: medium
resilience
Tom's Wishlist
type: bug
type: discussion
type: improvement
type: new feature
type: refactor
type: task
type: testing
unplanned
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: LBRYCommunity/lbry-redux#412
Loading…
Reference in a new issue
No description provided.
Delete branch "ip/release-time"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Issue
For
lbry-desktop #5514 - Add release date field
Changes
Updates for
UpdatePublishFormData
:releaseTime
is now a number instead of a string, matchingrelease_time
. It was getting confusing what the units were between the app variable vs claim variable.releaseTime
will always matchrelease_time
for an edit. It will be used in the GUI to reset just the date to the original, instead of having to reset the entire form.releaseTime
will be undefined for new uploads.releaseTimeEdited
will be used byupdatePublishForm
in the GUI to represent the desired new release time. Set toundefined
if we don't want to change the date.Will give this a test soon, but this doesn't seem right as we always want to populate release time: "releaseTime will be undefined for new uploads."
releaseTime
andreleaseTimeEdited
is only used in the GUI side to differentiate the following cases:Ultimately, they get converted to the following when publishing:
So,
release_time
will always be populated.Gotcha...that makes more sense. Testing...