Files
mozo-backend/app/controllers/suppliers/application_controller.rb
T
2014-11-27 19:42:51 +01:00

12 lines
226 B
Ruby

module Suppliers
class ApplicationController < ::ApplicationController
before_filter :authenticate_supplier!
layout 'supplier/app'
rescue_from 'RestClient::Conflict' do |e|
#binding.pry
end
end
end