magick-feature-flags 0.9.28 → 0.9.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/magick/admin_ui/engine.rb +5 -0
- data/lib/magick/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: f1083faa87c666482ed4ad7d0497e8ffcd7971f735ec1060d211f56e2ebbb756
|
|
4
|
+
data.tar.gz: 444ef7774e1f944f39f133ef8f6b37a94915574c54ec9b562e3623d5b1ab4d08
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd0f4cc40177fcf796461f84e4ff4b63fd569b5828d0ebc8c2d3c8130b4938db02f747e223858267e96c0ebd471d46e6e437efb97f8f073e888f05cdab737876
|
|
7
|
+
data.tar.gz: 8cd773acbaf174f5e96c9eed9f3103f241936ac61941cb533ab335df4d60bfc7fe13dab0e639b344715c4d0a358eb0c245ce4f038a54f67942acbb15fad9d338
|
|
@@ -16,6 +16,11 @@ module Magick
|
|
|
16
16
|
|
|
17
17
|
engine_name 'magick_admin_ui'
|
|
18
18
|
|
|
19
|
+
# Ensure the engine doesn't interfere with Warden/Devise middleware
|
|
20
|
+
# Rails engines by default inherit middleware from the main app, which is what we want
|
|
21
|
+
# We don't add any custom middleware that could interfere with Warden/Devise
|
|
22
|
+
# The engine should work alongside existing authentication middleware without modification
|
|
23
|
+
|
|
19
24
|
# Rails engines automatically detect app/views and app/controllers directories
|
|
20
25
|
# With isolate_namespace, views should be at:
|
|
21
26
|
# app/views/magick/adminui/[controller]/[action].html.erb
|
data/lib/magick/version.rb
CHANGED