mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-15 21:55:29 +01:00
15 lines
No EOL
203 B
Ruby
15 lines
No EOL
203 B
Ruby
module RecurringTodos
|
|
|
|
class DailyRepeatPattern < AbstractRepeatPattern
|
|
|
|
def initialize(user)
|
|
super user
|
|
end
|
|
|
|
def every_x_days
|
|
@recurring_todo.every_other1
|
|
end
|
|
|
|
end
|
|
|
|
end |