aboutsummaryrefslogtreecommitdiff
path: root/lib/backend/recipients_store.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/backend/recipients_store.rb')
-rw-r--r--lib/backend/recipients_store.rb12
1 files changed, 10 insertions, 2 deletions
diff --git a/lib/backend/recipients_store.rb b/lib/backend/recipients_store.rb
index 16b063b..2dab533 100644
--- a/lib/backend/recipients_store.rb
+++ b/lib/backend/recipients_store.rb
@@ -48,10 +48,18 @@ module Backend
write()
end
+ def getPath()
+ File.join(@baseDir, "config", "recipients")
+ end
+
+ def hasPath?()
+ File.directory?(getPath())
+ end
+
private
def read()
- fileName = File.join(@baseDir, "config", "recipients")
+ fileName = getPath()
file = File.new(fileName, "r")
begin
recipients = []
@@ -72,7 +80,7 @@ module Backend
end
def write()
- fileName = File.join(@baseDir, "config", "recipients")
+ fileName = getPath()
file = File.new(fileName, "w")
begin
@recipients.each do |recipient|