Commit 40f98eb359fe77a78b192dcc922c7189b59db109

Authored by Spencer Alan
1 parent b5967379
Exists in master

remove protect_from_forgery

Gemfile.lock
1 1 PATH
2 2 remote: .
3 3 specs:
4   - scim_rails (0.1.1)
  4 + scim_rails (0.1.2)
5 5 rails (~> 5.0.0)
6 6  
7 7 GEM
... ...
app/controllers/scim_rails/application_controller.rb
1 1 module ScimRails
2 2 class ApplicationController < ActionController::API
3   - protect_from_forgery with: :exception
4 3 end
5 4 end
... ...
lib/scim_rails/version.rb
1 1 module ScimRails
2   - VERSION = '0.1.1'
  2 + VERSION = '0.1.2'
3 3 end
... ...