Remove unused tutorial_group and tutorial_links queries.
authorTom Clegg <tom@curoverse.com>
Fri, 25 Apr 2014 00:06:23 +0000 (20:06 -0400)
committerTom Clegg <tom@curoverse.com>
Fri, 25 Apr 2014 00:06:23 +0000 (20:06 -0400)
apps/workbench/app/controllers/users_controller.rb

index 3077c2f6d36839da7c140847ef767f4e33d706b9..a3756e896a8e6907fd7c0fdcd5ba15cbac91e2a8 100644 (file)
@@ -113,22 +113,6 @@ class UsersController < ApplicationController
       order('created_at desc').
       where(created_by: current_user.uuid)
 
-
-    # A Tutorial is a Link which has link_class "resources" and name
-    # "wants", and is owned by the Tutorials Group (i.e., named
-    # "Arvados Tutorials" and owned by the system user).
-    @tutorial_group = Group.where(owner_uuid: User.system.uuid,
-                                  name: 'Arvados Tutorials').first
-    if @tutorial_group
-      @tutorial_links = Link.where(tail_uuid: @tutorial_group.uuid,
-                                   link_class: 'resources',
-                                   name: 'wants')
-    else
-      @tutorial_links = []
-    end
-    @tutorial_complete = {
-      'Run a job' => @my_last_job
-    }
     respond_to do |f|
       f.js { render template: 'users/home.js' }
       f.html { render template: 'users/home' }