We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
User Story
As the devleoper of Stalker I want to represent the schedule constraints with a proper IntEnum instance so that Stalker is more modern.
IntEnum
Acceptance Criteria
Create a new IntEnum with:
from enum import IntEnum class ScheduleConstraint(IntEnum): NONE = 0 Start = 1 End = 2 Both = 3
Create a ScheduleConstraintDecorator to parse values coming from db as ScheduleConstraint enum values.
ScheduleConstraintDecorator
ScheduleConstraint
The text was updated successfully, but these errors were encountered:
[#87] Added ScheduleConstraint enum.
1275d5e
[#87] Updated docstring of Task to reflect the change in `schedule_co…
43915d1
…nstraint` argument.
[#87] Removed task_schedule_constraints config value from the `stal…
task_schedule_constraints
95baf79
…ker.config` module.
Merge pull request #126 from eoyilmaz/87-create-scheduleconstraint-enum
a95a734
[#87] Added `ScheduleConstraint` enum.
eoyilmaz
Successfully merging a pull request may close this issue.
User Story
As the devleoper of Stalker I want to represent the schedule constraints with a proper
IntEnum
instance so that Stalker is more modern.Acceptance Criteria
Create a new
IntEnum
with:Create a
ScheduleConstraintDecorator
to parse values coming from db asScheduleConstraint
enum values.The text was updated successfully, but these errors were encountered: