12479: Removed tags related code on wb, not needed with the new
[arvados.git] / apps / workbench / app / controllers / collections_controller.rb
index 8025681f2d5b3e4cce0981a792a9c62b5d4fc538..0a7f22b95789edc163198fbf32ab55045317f298 100644 (file)
@@ -7,6 +7,8 @@ require "arvados/collection"
 require "uri"
 
 class CollectionsController < ApplicationController
+  include ActionController::Live
+
   skip_around_filter :require_thread_api_token, if: proc { |ctrl|
     Rails.configuration.anonymous_user_token and
     'show' == ctrl.action_name
@@ -298,30 +300,6 @@ class CollectionsController < ApplicationController
     end
   end
 
-  def tags
-    render
-  end
-
-  def save_tags
-    tags_param = params['tag_data']
-    if tags_param
-      if tags_param.is_a?(String) && tags_param == "empty"
-        tags = {}
-      else
-        tags = tags_param
-      end
-    end
-
-    if tags
-      if @object.update_attributes properties: tags
-        @saved_tags = true
-        render
-      else
-        self.render_error status: 422
-      end
-    end
-  end
-
   protected
 
   def find_usable_token(token_list)