diff --git a/app/models/collections/context.rb b/app/models/collections/context.rb
index 647b79965eca2b8d09ef1c967699ad78d7c2a6d2..c4bd72588d46fdd1d9f631ea98eefb463d1aebb5 100644
--- a/app/models/collections/context.rb
+++ b/app/models/collections/context.rb
@@ -1,5 +1,11 @@
 module Collections
   class Context
     attr_reader :from, :privacy
+
+    def initialize
+      @from = nil
+      @privacy = nil
+    end
+
   end
 end