From 44f508652b1d26093d6cb4b339e80eb4daceeb78 Mon Sep 17 00:00:00 2001 From: Mauricio Giacomini Girardello <mauriciogiacomini4@gmail.com> Date: Wed, 30 Sep 2015 11:20:32 -0300 Subject: [PATCH] adding fake data --- app/controllers/users_controller.rb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 79a2287e..c6e45098 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -23,16 +23,18 @@ class UsersController < ApplicationController def me @objects = learning_object_repository.all_from_offset_to_limit 0, 10 @new_collection = Collection.new - @new_collection.name = 'Favoritos' + @bookmarks = Collection.new(name: 'Favoritos') + @add1 = Collection.new(name: 'Aula fÃsica quantica - turma b') + @add2 = Collection.new(name: 'Aula segunda lei de newton - turma a') @groups = [ CollectionsGroup.new(title: 'Coleções Automáticas', collections: [ - @new_collection + @bookmarks ]), - CollectionsGroup.new(title: 'Coleções adicionadas', + CollectionsGroup.new(title: 'Coleções Adicionadas', collections: [ - @new_collection + @add1, @add2 ]) ] end -- GitLab