Files
mozo-backend/app/controllers/suppliers/application_controller.rb
T
2013-12-21 16:46:07 +01:00

12 lines
220 B
Ruby

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