From 81e579f392f839e316de3b732892f9d24b1da9c4 Mon Sep 17 00:00:00 2001
From: Mauricio Giacomini Girardello <mauriciogiacomini4@gmail.com>
Date: Tue, 3 Nov 2015 09:16:22 -0200
Subject: [PATCH] fixing wrong constants

---
 app/models/collections/public_context.rb       | 2 +-
 app/models/collections/user_context.rb         | 2 +-
 app/models/collections/user_private_context.rb | 2 +-
 app/models/collections/user_public_context.rb  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app/models/collections/public_context.rb b/app/models/collections/public_context.rb
index d7013b13..67c73e55 100644
--- a/app/models/collections/public_context.rb
+++ b/app/models/collections/public_context.rb
@@ -1,7 +1,7 @@
 ##
 # This class represents an specification for listing collections
 # The PublicContext class specify all collections with field privacy=public
-class Collections::PublicContext < Collections::Context
+class Collections::PublicContext < Context
 
   def from
     'Collection'
diff --git a/app/models/collections/user_context.rb b/app/models/collections/user_context.rb
index 5c70f92c..13dbf50e 100644
--- a/app/models/collections/user_context.rb
+++ b/app/models/collections/user_context.rb
@@ -1,4 +1,4 @@
-class UserContext < Collections::Context
+class UserContext < Context
 
   def initialize(user)
     @user = user
diff --git a/app/models/collections/user_private_context.rb b/app/models/collections/user_private_context.rb
index 3b6b8534..970528ce 100644
--- a/app/models/collections/user_private_context.rb
+++ b/app/models/collections/user_private_context.rb
@@ -1,7 +1,7 @@
 ##
 # This class represents an specification for listing collections
 # The PublicContext class specify all collections with field privacy=public
-class Collections::UserPrivateContext < Collections::UserContext
+class Collections::UserPrivateContext < UserContext
 
   def privacy
     'private'
diff --git a/app/models/collections/user_public_context.rb b/app/models/collections/user_public_context.rb
index f1612eb0..ff401439 100644
--- a/app/models/collections/user_public_context.rb
+++ b/app/models/collections/user_public_context.rb
@@ -1,7 +1,7 @@
 ##
 # This class represents an specification for listing collections
 # The PublicContext class specify all collections with field privacy=public
-class Collections::UserPublicContext < Collections::UserContext
+class Collections::UserPublicContext < UserContext
 
   def privacy
     'public'
-- 
GitLab