diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-04-27 15:32:20 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-04-27 15:32:20 +0100 |
commit | 5e6f40f199adfcf5815b72d8450e1ca04579b368 (patch) | |
tree | a0533ac63aaa1d98d15853d022409e72271cfba5 /lib | |
parent | dada535a41cba45be0eff77381d6c7e19ab49f51 (diff) |
Fixed notification when on holiday/off sick
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mauve/configuration_builders/person.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/mauve/configuration_builders/person.rb b/lib/mauve/configuration_builders/person.rb index afb967b..5c79474 100644 --- a/lib/mauve/configuration_builders/person.rb +++ b/lib/mauve/configuration_builders/person.rb @@ -57,6 +57,16 @@ module Mauve end end + # + # + def notify_when_on_holday! + result.notify_when_on_holiday! + end + + def notify_when_off_sick! + result.notify_when_off_sick! + end + end end |