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
In this issue, it was indicated that we would want to support "2nd Thursday of the month"-type schedules: #2 (comment).
This is what would be represented by byDay: '2TH'.
byDay: '2TH'
However, other rules of the modelling spec make this unrepresentable:
byDay is only supported for sessions with weekly occurrence (as is being implemented in this PR. Specifically, in this bit of code)
byDay
byMonthDay is supported for sessions with monthly occurrence. But it is not possible to specify "2nd Thursday of the month" with this
byMonthDay
byDay must be an array. This is very minor - byDay: ['2TH'] could in theory be representable
byDay: ['2TH']
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In this issue, it was indicated that we would want to support "2nd Thursday of the month"-type schedules: #2 (comment).
This is what would be represented by
byDay: '2TH'
.However, other rules of the modelling spec make this unrepresentable:
byDay
is only supported for sessions with weekly occurrence (as is being implemented in this PR. Specifically, in this bit of code)byMonthDay
is supported for sessions with monthly occurrence. But it is not possible to specify "2nd Thursday of the month" with thisbyDay
must be an array. This is very minor -byDay: ['2TH']
could in theory be representableThe text was updated successfully, but these errors were encountered: