mumuki-laboratory 5.0.8 → 5.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/assets_controller.rb +2 -1
- data/lib/mumuki/laboratory/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c1c63573c1251589d69b6391f66655738040a51e008198aea6fb0552f9dbdc4
|
4
|
+
data.tar.gz: 96e2b33e98a135746c2426a5755fd46e3d83e59cb5c298e9d752e93e4a9d2cae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 671f065b599f8fbfdfe329a5654378e47502e37e913e9c8fef03ee9794d5b145da79f4390c886b69dc1b76a09ce0f551aa8f1803cb7b115d1beac07d668454b4
|
7
|
+
data.tar.gz: 8a7222860a58a0af7d4ebe3d618dc4d0e270ff70a550090fbd4a52819ce907273787c07d4b27e357fe7b41c483bbb1a98fae7f76427fd1e2895c35f098f5f221
|
@@ -1,6 +1,6 @@
|
|
1
1
|
class AssetsController < ApplicationController
|
2
2
|
|
3
|
-
skip_before_action :
|
3
|
+
skip_before_action :verify_authenticity_token, :authorize_if_private!
|
4
4
|
|
5
5
|
def theme_stylesheet
|
6
6
|
render inline: Organization.current.theme_stylesheet.to_s, content_type: 'text/css'
|
@@ -9,4 +9,5 @@ class AssetsController < ApplicationController
|
|
9
9
|
def extension_javascript
|
10
10
|
render inline: Organization.current.extension_javascript.to_s, content_type: 'text/javascript'
|
11
11
|
end
|
12
|
+
|
12
13
|
end
|