rest_rails 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37bef45a003d48ac892e1108b2c60943013d79deb1cac771f5f3be33969aa37f
|
4
|
+
data.tar.gz: 3aa3996113d78bc65fdc167b44ec5b1287b3626a7a3eafc9c9c3707fc6d57c9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a950feac58f26f179c37f370887529491d7ddf8153211d5a17f20ebfca691695ba955bf2621ee2fcca4401e3248437687d40a0c8ea2bccf5e7aa697e917bb870
|
7
|
+
data.tar.gz: 1132938c2b68cce52130c22cc7ec0370ba46e0def6ae29e08d2886253e1f6464ba8393599d333f945570aa412ff4fbda1253dd1a3b4a5b3c61503fa7d5ac0193
|
@@ -2,7 +2,7 @@ require 'json'
|
|
2
2
|
module RestRails
|
3
3
|
class DataController < ::ApplicationController
|
4
4
|
include ApplicationHelper
|
5
|
-
skip_before_action :verify_authenticity_token, if: -> {self.respond_to?("verify_authenticity_token")}
|
5
|
+
# skip_before_action :verify_authenticity_token, if: -> {self.respond_to?("verify_authenticity_token")}
|
6
6
|
before_action :verify_table_permissions!, only: [:create, :update, :destroy, :attach, :unattach]
|
7
7
|
before_action :set_model
|
8
8
|
before_action :set_object, only: [:show, :update, :destroy, :fetch_column, :attach, :unattach]
|
data/lib/rest_rails/version.rb
CHANGED