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 developer of Stalker I want to have the schedule model value to be a enum class so that it is more modern and Pythonic.
Acceptance Criteria
stalker.models.mixins
class ScheduleModel(Enum): Effort = "effort" Duration = "duration" Length = "length"
ScheduleModelDecorator
ScheduleModel
The text was updated successfully, but these errors were encountered:
[#128] Implemented ScheduleModel Enum class to handle schedule mode…
9dd23a8
…ls as an enumerator.
[#128] Updated WorkingHoursMixin to make the working_hours_id col…
WorkingHoursMixin
working_hours_id
964910a
…umn nullable and `working_hours` attribute to be optional as before.
[#128] Updated SimpleEntity to make the stalker_version column nu…
SimpleEntity
stalker_version
78b4605
…llable and `stalker_version` attribute to be optional as before.
Merge pull request #131 from eoyilmaz/128-create-schedulemodel-enum
9a03b89
[#128] Implemented `ScheduleModel` Enum class to handle schedule mode…
eoyilmaz
Successfully merging a pull request may close this issue.
User Story
As the developer of Stalker I want to have the schedule model value to be a enum class so that it is more modern and Pythonic.
Acceptance Criteria
stalker.models.mixins
:ScheduleModelDecorator
to parse values coming from the db asScheduleModel
enum values.The text was updated successfully, but these errors were encountered: