spec/app_root/app/controllers/songs_controller.rb in consul-0.1.2 vs spec/app_root/app/controllers/songs_controller.rb in consul-0.2.0
- old
+ new
@@ -1,13 +1,12 @@
class SongsController < ApplicationController
- # power check is missing
+ # power check is missing, but we're skipping it for a single action'
+ skip_power_check :only => :show
- skip_power_check :only => :index
-
def show
end
- def index
+ def update
end
end