mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-10 11:18:51 +01:00
19 lines
No EOL
296 B
Ruby
19 lines
No EOL
296 B
Ruby
module RecurringTodos
|
|
|
|
class MonthlyRepeatPattern < AbstractRepeatPattern
|
|
|
|
def initialize(user)
|
|
super user
|
|
end
|
|
|
|
def every_x_day?
|
|
@recurring_todo.recurrence_selector == 0
|
|
end
|
|
|
|
def every_xth_day?
|
|
@recurring_todo.recurrence_selector == 1
|
|
end
|
|
|
|
end
|
|
|
|
end |