Sha256: 9ba1e2827e42c172f03befa1c701de11efd7c23026f1571c030a75f0ba72d292

Contents?: true

Size: 215 Bytes

Versions: 1

Compression:

Stored size: 215 Bytes

Contents

class VendorProtectedController < ApplicationController
  before_filter :authenticate_vendor, only: [:index]
  before_filter :some_missing_method, only: [:show]

  def index
    head :ok
  end

  def show
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
KnockRails3-2.1.1 test/dummy/app/controllers/vendor_protected_controller.rb